Skip to content

Commit 65b7d97

Browse files
committed
Retry with latest Poetry
1 parent 8923605 commit 65b7d97

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: "3.10"
1515
- uses: Gr1n/setup-poetry@v7
1616
with:
17-
poetry-version: '1.1.10'
17+
poetry-version: '1.1.12'
1818
- run: pip install tox
1919
- run: tox -e lint,py310-dj32
2020
test_compatibility:
@@ -41,7 +41,7 @@ jobs:
4141
python-version: ${{ matrix.python }}
4242
- uses: Gr1n/setup-poetry@v7
4343
with:
44-
poetry-version: '1.1.10'
44+
poetry-version: '1.1.12'
4545
- run: pip install tox
4646
- run: tox -q
4747
env:
@@ -65,9 +65,9 @@ jobs:
6565
- uses: actions/setup-python@v2
6666
with:
6767
python-version: "3.10"
68-
# Using un-pinned installer to work around Python 3.10 compatibility issue.
69-
# See https://github.com/python-poetry/poetry/issues/4210.
70-
- run: curl -sSL https://install.python-poetry.org | python3 - --version 1.2.0a2
68+
- uses: Gr1n/setup-poetry@v7
69+
with:
70+
poetry-version: '1.1.12'
7171
- uses: actions/cache@v2
7272
with:
7373
path: ~/.cache/pip

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ default_section = "THIRDPARTY"
6161
multi_line_output = 5
6262

6363
[build-system]
64-
requires = ["poetry>=1.1.10"]
64+
requires = ["poetry>=1.1.12"]
6565
build-backend = "poetry.masonry.api"

tox.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ deps =
1919

2020
[testenv:lint]
2121
commands =
22-
# For compatibility with Python 3.10.
23-
# See https://github.com/python-poetry/poetry/issues/4210.
24-
poetry config experimental.new-installer false
2522
poetry install -q
2623
poetry run flake8
2724
poetry run isort --check-only --diff

tox_install.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/bin/sh
22
set -e
33

4-
# For compatibility with Python 3.10.
5-
# See https://github.com/python-poetry/poetry/issues/4210.
6-
poetry config experimental.new-installer false
74
poetry install
85

96
if [ ! -z "$@" ]

0 commit comments

Comments
 (0)