Skip to content

Commit 48196a9

Browse files
RLKRorock-n-shrimproll
authored andcommitted
freeze poetry version in workflows (#413)
Set poetry version to 1.8.5. v2.0 release breaks workflows.
1 parent 6cf0c15 commit 48196a9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build_and_publish_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: setup poetry and install dependencies
3535
run: |
36-
python -m pip install --upgrade pip poetry
36+
python -m pip install --upgrade pip poetry==1.8.5
3737
python -m poetry install --with tutorials,docs --all-extras --no-ansi --no-interaction
3838
3939
- name: build documentation

.github/workflows/build_and_upload_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: setup poetry
2424
run: |
25-
python -m pip install --upgrade pip poetry
25+
python -m pip install --upgrade pip poetry==1.8.5
2626
2727
- name: build wheels and test uploading to pypi
2828
if: startsWith(github.ref, 'refs/tags/v') != true

.github/workflows/codestyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: setup poetry and install dependencies
3030
run: |
31-
python -m pip install --upgrade pip poetry
31+
python -m pip install --upgrade pip poetry==1.8.5
3232
python -m poetry install --with lint --no-ansi --no-interaction
3333
3434
- name: run codestyle

.github/workflows/test_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: setup poetry and install dependencies
3434
run: |
35-
python -m pip install --upgrade pip poetry
35+
python -m pip install --upgrade pip poetry==1.8.5
3636
python -m poetry install --with test,tutorials --all-extras --no-ansi --no-interaction
3737
3838
- name: run tests

.github/workflows/test_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: install dependencies
3636
run: |
37-
python -m pip install --upgrade pip poetry
37+
python -m pip install --upgrade pip poetry==1.8.5
3838
python -m poetry install --with test,tutorials --all-extras --no-ansi --no-interaction
3939
4040
- name: run pytest
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: install dependencies
5858
run: |
59-
python -m pip install --upgrade pip poetry
59+
python -m pip install --upgrade pip poetry==1.8.5
6060
python -m poetry install --with test --no-ansi --no-interaction
6161
6262
- name: run pytest

0 commit comments

Comments
 (0)