Skip to content

Commit 5e60674

Browse files
committed
Update poetry to 2.1.2
1 parent 8151c77 commit 5e60674

11 files changed

Lines changed: 166 additions & 59 deletions

File tree

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2121
with:
22-
poetry-version: '1.8.5'
22+
poetry-version: '2.1.2'
2323

2424
- name: Build Artifacts
2525
run: poetry build

.github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python & Poetry Environment
1717
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
1818
with:
19-
poetry-version: '1.8.5'
19+
poetry-version: '2.1.2'
2020

2121
- name: Check Tag Version
2222
# make sure the pushed/created tag matched the project version

.github/workflows/checks.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python & Poetry Environment
1919
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2020
with:
21-
poetry-version: '1.8.5'
21+
poetry-version: '2.1.2'
2222

2323
- name: Check Version(s)
2424
run: |
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Python & Poetry Environment
3737
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
3838
with:
39-
poetry-version: '1.8.5'
39+
poetry-version: '2.1.2'
4040

4141
- name: Build Documentation
4242
run: |
@@ -58,7 +58,7 @@ jobs:
5858
- name: Setup Python & Poetry Environment
5959
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
6060
with:
61-
poetry-version: '1.8.5'
61+
poetry-version: '2.1.2'
6262

6363
- name: Run changelog update check
6464
run: poetry run -- nox -s changelog:updated
@@ -79,7 +79,7 @@ jobs:
7979
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
8080
with:
8181
python-version: ${{ matrix.python-version }}
82-
poetry-version: '1.8.5'
82+
poetry-version: '2.1.2'
8383

8484
- name: Run lint
8585
run: poetry run -- nox -s lint:code
@@ -109,7 +109,7 @@ jobs:
109109
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
110110
with:
111111
python-version: ${{ matrix.python-version }}
112-
poetry-version: '1.8.5'
112+
poetry-version: '2.1.2'
113113

114114
- name: Run type-check
115115
run: poetry run -- nox -s lint:typing
@@ -130,7 +130,7 @@ jobs:
130130
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
131131
with:
132132
python-version: ${{ matrix.python-version }}
133-
poetry-version: '1.8.5'
133+
poetry-version: '2.1.2'
134134

135135
- name: Run security linter
136136
run: poetry run -- nox -s lint:security
@@ -153,7 +153,7 @@ jobs:
153153
- name: Setup Python & Poetry Environment
154154
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
155155
with:
156-
poetry-version: '1.8.5'
156+
poetry-version: '2.1.2'
157157

158158
- name: Run format check
159159
run: poetry run -- nox -s project:format
@@ -176,7 +176,7 @@ jobs:
176176
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
177177
with:
178178
python-version: ${{ matrix.python-version }}
179-
poetry-version: '1.8.5'
179+
poetry-version: '2.1.2'
180180

181181
- name: Run Tests and Collect Coverage
182182
run: poetry run -- nox -s test:unit -- --coverage

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python & Poetry Environment
1919
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2020
with:
21-
poetry-version: '1.8.5'
21+
poetry-version: '2.1.2'
2222

2323
- name: Build Documentation
2424
run: |

.github/workflows/matrix-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2121
with:
22-
poetry-version: '1.8.5'
22+
poetry-version: '2.1.2'
2323

2424
- name: Generate matrix
2525
run: poetry run -- nox -s matrix:all

.github/workflows/matrix-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2121
with:
22-
poetry-version: '1.8.5'
22+
poetry-version: '2.1.2'
2323

2424
- name: Generate matrix
2525
run: poetry run -- nox -s matrix:python

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
2121
with:
22-
poetry-version: '1.8.5'
22+
poetry-version: '2.1.2'
2323

2424
- name: Download Artifacts
2525
uses: actions/download-artifact@v4.2.1

.github/workflows/slow-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
3232
with:
3333
python-version: ${{ matrix.python-version }}
34-
poetry-version: '1.8.5'
34+
poetry-version: '2.1.2'
3535

3636
- name: Run Tests and Collect Coverage
3737
run: poetry run -- nox -s test:integration -- --coverage --db-version ${{ matrix.exasol-version }}

doc/changes/unreleased.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
# Unreleased
2+
3+
## Internal
4+
5+
* #68 Update to poetry 2.1.2 and exasol-toolbox 1.1.0

0 commit comments

Comments
 (0)