Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/pypi_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@ jobs:

cd-job:
name: Continuous Delivery
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- name: SCM Checkout
uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
with:
python-version: "3.10"
poetry-version: '2.1.2'

- name: Build Artifacts
run: poetry build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ jobs:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11" ]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:

- name: SCM Checkout
uses: actions/checkout@v4

- name: Setup Python & Poetry Environment
uses: exasol/python-toolbox/.github/actions/python-environment@0.20.0
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
with:
python-version: ${{ matrix.python-version }}
poetry-version: '1.8.2'
poetry-version: '2.1.2'

- name: Run pytest
run: poetry run python3 -m pytest
run: poetry run -- python3 -m pytest
4 changes: 4 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# UDF Mock Python <version TBD>, released <date TBD>

### Refactorings

* #64: Update to poetry 2.1.2
Loading