12 lines
468 B
Django/Jinja
12 lines
468 B
Django/Jinja
# The following is important for the Tekton build: Only the working directory
|
|
# is transferred between Tekton steps, e.g. between the "prepare" and "build"
|
|
# steps in the Python build. Thus we instruct poetry to install the dependencies
|
|
# into a .venv directory in the working directory instead of into a global directory.
|
|
|
|
[virtualenvs]
|
|
create = true
|
|
in-project = true
|
|
|
|
[repositories.artifactory]
|
|
url = "https://bin.sbb.ch/artifactory/api/pypi/{{ pypi_repository }}"
|