Skip to content
Snippets Groups Projects
Commit 8566d8df authored by Jakub Ziebinski's avatar Jakub Ziebinski
Browse files

Attach beekeepy to dependencies

parent b8d20084
No related branches found
No related tags found
1 merge request!230Implementation of the python wax interface
...@@ -25,6 +25,10 @@ variables: ...@@ -25,6 +25,10 @@ variables:
PYTHON_IMAGE_TAG: "${CI_BASE_IMAGE_TAG}" PYTHON_IMAGE_TAG: "${CI_BASE_IMAGE_TAG}"
PYTHON_IMAGE: "${CI_BASE_IMAGE}" PYTHON_IMAGE: "${CI_BASE_IMAGE}"
# PIP INDEX URL's
FIRST_INDEX: "https://gitlab.syncad.com/api/v4/projects/362/packages/pypi/simple "
SECOND_INDEX: "https://gitlab.syncad.com/api/v4/projects/434/packages/pypi/simple"
# colors: # colors:
TXT_BLUE: "\e[1;34m" TXT_BLUE: "\e[1;34m"
TXT_CLEAR: "\e[0m" TXT_CLEAR: "\e[0m"
...@@ -167,7 +171,7 @@ push_to_wiki: ...@@ -167,7 +171,7 @@ push_to_wiki:
artifacts: true artifacts: true
before_script: before_script:
- !reference [.configuration_template, before_script] - !reference [.configuration_template, before_script]
- pip install ${PYPROJECT_DIR}/dist/*.whl - pip install --index-url $FIRST_INDEX --extra-index-url $SECOND_INDEX ${PYPROJECT_DIR}/dist/*.whl
- pip list - pip list
- ls -al $(poetry -C "${PYPROJECT_DIR}" env info --path)/lib/python3.10/site-packages/ - ls -al $(poetry -C "${PYPROJECT_DIR}" env info --path)/lib/python3.10/site-packages/
......
This diff is collapsed.
...@@ -18,6 +18,11 @@ packages = [ ...@@ -18,6 +18,11 @@ packages = [
{ include = "wax"}, { include = "wax"},
{ include = "wax/proto" } { include = "wax/proto" }
] ]
source = [
{ name = "PyPI", priority = "primary" },
{ name = "gitlab-schemas", url = "https://gitlab.syncad.com/api/v4/projects/362/packages/pypi/simple", priority = "supplemental" },
{ name = "gitlab-helpy-beekeepy", url = "https://gitlab.syncad.com/api/v4/projects/434/packages/pypi/simple", priority = "supplemental" },
]
[tool.poetry.build] [tool.poetry.build]
script = "build.py" script = "build.py"
...@@ -26,6 +31,7 @@ generate-setup-file = true ...@@ -26,6 +31,7 @@ generate-setup-file = true
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3.10"
protobuf = "4.24.4" protobuf = "4.24.4"
beekeepy = "0.0.1.dev273+7461832"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
mypy = "1.11.2" mypy = "1.11.2"
...@@ -92,4 +98,4 @@ ignore = [ ...@@ -92,4 +98,4 @@ ignore = [
allow-star-arg-any = true allow-star-arg-any = true
[tool.ruff.lint.isort] [tool.ruff.lint.isort]
known-first-party = ["wax"] known-first-party = ["wax", "beekeepy"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment