Skip to content

Commit d131739

Browse files
committed
Update poetry to 1.8.5 in GHAs
1 parent acce144 commit d131739

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.github/workflows/ci_poetry.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525

2626
- name: Install poetry
27-
run: pipx install poetry==1.8.2
27+
run: pipx install poetry==1.8.5
2828

2929
- name: Configure poetry
3030
run: poetry config virtualenvs.in-project true
@@ -64,7 +64,7 @@ jobs:
6464
persist-credentials: false
6565

6666
- name: Install poetry
67-
run: pipx install poetry==1.8.2
67+
run: pipx install poetry==1.8.5
6868

6969
- name: Configure poetry
7070
run: poetry config virtualenvs.in-project true
@@ -105,7 +105,7 @@ jobs:
105105
steps:
106106
- uses: actions/checkout@v4
107107

108-
- run: pipx install poetry==1.8.2
108+
- run: pipx install poetry==1.8.5
109109
- run: poetry config virtualenvs.in-project true
110110
- uses: actions/setup-python@v5
111111
with:

.github/workflows/poetry_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
with:
2121
python-version: "3.11"
2222

23-
- name: "Install poetry 1.8.2"
24-
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.2
23+
- name: "Install poetry 1.8.5"
24+
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.5
2525

2626
- name: Build package
2727
run: poetry build

.github/workflows/poetry_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
persist-credentials: false
2222
- name: Install poetry
23-
run: pipx install poetry==1.8.2
23+
run: pipx install poetry==1.8.5
2424
- uses: actions/setup-python@v5
2525
with:
2626
python-version: "3.11"

.github/workflows/publish_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
with:
3030
python-version: "3.11"
3131

32-
- name: "Install poetry 1.8.2"
33-
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.2
32+
- name: "Install poetry 1.8.5"
33+
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.8.5
3434

3535
- name: Build package
3636
run: poetry build

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Unreleased
44

55
* Bump versions of `pre-commit` tools (\#975).
6+
* Update poetry to 1.8.5 (\#972).
67

78
# 1.5.4
89
* Tasks:

docs/development.md

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

33
## Setting up environment
44

5-
We use [poetry](https://python-poetry.org/docs) to manage both development environments and package building. A simple way to install it is `pipx install poetry==1.8.2`, or you can look at the installation section [here](https://python-poetry.org/docs#installation).
5+
We use [poetry](https://python-poetry.org/docs) to manage both development environments and package building. A simple way to install it is `pipx install poetry==1.8.5`, or you can look at the installation section [here](https://python-poetry.org/docs#installation).
66

77
From the repository root folder, running any of
88
```bash

0 commit comments

Comments
 (0)