Skip to content

Commit 04799e1

Browse files
ci: stick to poetry 1.1.15 in CI, due to issues in 1.2
1 parent bde7889 commit 04799e1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.gitlab-ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ before_script:
3434
- python3 -m venv .venv
3535
- source .venv/bin/activate
3636
- pip install --upgrade pip
37-
- pip install poetry
37+
# 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
3841
- poetry --version
3942
- poetry install -vv
4043

0 commit comments

Comments
 (0)