Skip to content

Commit 07f2f83

Browse files
committed
Lock Poetry to v1.8.4
1 parent a5411d8 commit 07f2f83

File tree

5 files changed

+15
-1
lines changed

5 files changed

+15
-1
lines changed

.github/workflows/linter.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626

2727
- name: Install Poetry
2828
uses: snok/[email protected]
29+
with:
30+
version: 1.8.4
2931

3032
- name: Install CI dependencies
3133
run: |

.github/workflows/parallel-support.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161

6262
- name: Install Poetry
6363
uses: snok/[email protected]
64+
with:
65+
version: 1.8.4
6466

6567
- name: Install tox
6668
run: |
@@ -103,6 +105,8 @@ jobs:
103105

104106
- name: Install Poetry
105107
uses: snok/[email protected]
108+
with:
109+
version: 1.8.4
106110

107111
- name: Install tox
108112
run: |

.github/workflows/python-package.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161

6262
- name: Install Poetry
6363
uses: snok/[email protected]
64+
with:
65+
version: 1.8.4
6466

6567
- name: Install tox
6668
run: |
@@ -113,6 +115,8 @@ jobs:
113115

114116
- name: Install Poetry
115117
uses: snok/[email protected]
118+
with:
119+
version: 1.8.4
116120

117121
- name: Install tox
118122
run: |
@@ -158,6 +162,8 @@ jobs:
158162

159163
- name: Install Poetry
160164
uses: snok/[email protected]
165+
with:
166+
version: 1.8.4
161167

162168
- name: Install tox
163169
run: |

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build:
1313
post_create_environment:
1414
# Install poetry
1515
# https://python-poetry.org/docs/#installing-manually
16-
- pip install poetry==1.7.1
16+
- pip install poetry==1.8.4
1717
# Tell poetry to not use a virtual environment
1818
- poetry config virtualenvs.create false
1919
post_install:

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ allowlist_externals = poetry, pytest, bash, tox
2424
setenv =
2525
PYTHONUNBUFFERED = 1
2626
PYTHONDONTWRITEBYTECODE = 1
27+
deps =
28+
poetry==1.8.4
2729
commands_pre =
2830
poetry install -E "all" --with test
2931
commands =

0 commit comments

Comments
 (0)