Skip to content

Commit baaf89f

Browse files
committed
MESH-2092 update github actions poetry version
1 parent 8a81c41 commit baaf89f

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

.github/workflows/merge-develop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: setup poetry
2828
uses: abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8
2929
with:
30-
poetry-version: 1.5.1
30+
poetry-version: 2.1.2
3131

3232
- name: add poetry plugins
3333
run: |
@@ -130,7 +130,7 @@ jobs:
130130
- name: setup poetry
131131
uses: abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8
132132
with:
133-
poetry-version: 1.5.1
133+
poetry-version: 2.1.2
134134

135135
- name: add poetry plugins
136136
run: |

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: setup poetry
5555
uses: abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8
5656
with:
57-
poetry-version: 1.5.1
57+
poetry-version: 2.1.2
5858

5959
- name: add poetry plugins
6060
run: |
@@ -186,7 +186,7 @@ jobs:
186186
- name: setup poetry
187187
uses: abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8
188188
with:
189-
poetry-version: 1.5.1
189+
poetry-version: 2.1.2
190190

191191
- name: add poetry plugins
192192
run: |
@@ -273,7 +273,7 @@ jobs:
273273
- name: setup poetry
274274
uses: abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8
275275
with:
276-
poetry-version: 1.5.1
276+
poetry-version: 2.1.2
277277

278278
- name: add poetry plugins
279279
run: |

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ delete-hooks:
4343
refresh-hooks: delete-hooks .git/hooks/pre-commit .git/hooks/commit-msg
4444

4545
install:
46-
poetry install --sync
46+
poetry install
47+
poetry sync
4748

4849
install-ci:
49-
poetry install --without local --sync
50+
poetry install --without local
51+
poetry sync
5052

5153
update:
5254
poetry update

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ packages = [
99
]
1010
readme = "README.md"
1111

12-
[tool.poetry.requires-plugins]
13-
poetry-plugin-export = ">=1.8"
14-
1512
[tool.poetry.dependencies]
1613
# core dependencies
1714

@@ -47,6 +44,11 @@ black = ">=23.9.1,<26.0.0"
4744
[tool.poetry.group.local.dependencies]
4845
ipython = ">=8.11,<10.0"
4946

47+
[tool.poetry.requires-plugins]
48+
poetry-plugin-export = ">=1.8"
49+
50+
51+
5052
[tool.black]
5153
line-length = 120
5254
target-version = ['py39', 'py310']

0 commit comments

Comments
 (0)