Compare commits

...
2 Commits
Author SHA1 Message Date
Brian Bjarke Jensen 3eb5f5e826 updated to use pypi proxy
CI Pipeline / Test (pull_request) Failing after 27s
CI Pipeline / Build and Publish (./Dockerfile.web_ui, ${{ vars.docker_repo_url }}/${{ gitea.repository }}/web_ui) (pull_request) Has been skipped
CI Pipeline / Build and Publish (./Dockerfile.model, ${{ vars.docker_repo_url }}/${{ gitea.repository }}/model) (pull_request) Has been skipped
2024-06-05 22:04:27 +02:00
Brian Bjarke Jensen 4a4ee95e31 added threadripper as pypi proxy 2024-06-05 22:04:19 +02:00
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -17,6 +17,9 @@ jobs:
python-verison: "3.12" python-verison: "3.12"
architecture: "x64" architecture: "x64"
- name: Install Packages - name: Install Packages
env:
PIP_INDEX_URL: http://192.168.1.2:50001/index/
PIP_TRUSTED_HOST: 192.168.1.2
run: | run: |
pip install poetry pip install poetry
poetry install poetry install
+6
View File
@@ -49,6 +49,12 @@ dash-bootstrap-components = "^1.5.0"
dash-mantine-components = "^0.12.1" dash-mantine-components = "^0.12.1"
dash-auth = "^2.2.0" dash-auth = "^2.2.0"
[[tool.poetry.source]]
name = "threadripper"
url = "http://192.168.1.2:5001"
priority = "primary"
[build-system] [build-system]
requires = ["poetry-core"] requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"