Skip to content

Commit cbcedd5

Browse files
authored
Set upper bound for poetry due to dulwich dependency breaking py3.9 (#1521)
See python-poetry/poetry#10615 Reproduced, fixed and tested locally with `pipx install "poetry<=2.2.0"` Signed-off-by: Elliot Gunton <[email protected]>
1 parent b51f468 commit cbcedd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install base dependencies
1616
run: |
1717
python -m pip install --upgrade pip
18-
python -m pip install poetry
18+
python -m pip install "poetry<=2.2.0" twine
1919
- name: Bump version number
2020
run: poetry version ${{ github.event.release.tag_name }}
2121
- name: Build and publish

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install base dependencies
1919
run: |
2020
python -m pip install --upgrade pip
21-
python -m pip install poetry twine
21+
python -m pip install "poetry<=2.2.0" twine
2222
- name: Bump version number
2323
run: poetry version ${{ github.event.release.tag_name }}
2424
- name: Build and publish

0 commit comments

Comments
 (0)