We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde7889 commit 04799e1Copy full SHA for 04799e1
.gitlab-ci.yml
@@ -34,7 +34,10 @@ before_script:
34
- python3 -m venv .venv
35
- source .venv/bin/activate
36
- pip install --upgrade pip
37
- - pip install poetry
+ # Stick to Poetry 1.1.15, because with Poetry 1.2.0 there is a build issue on Python 3.6:
38
+ # "pydantic-1.9.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl is not a supported wheel on this platform."
39
+ # Note: Poetry and the project dependencies should also be installed in separate virtual-envs (that is not done here)
40
+ - pip install poetry==1.1.15
41
- poetry --version
42
- poetry install -vv
43
0 commit comments