Skip to content

Commit

Permalink
use python 3.12 base image
Browse files Browse the repository at this point in the history
python 3.12.4 did not work, which is why the version was pinned to 3.12.3.
However, the most recent python 3.12 version should work again.
  • Loading branch information
P4sca1 committed Oct 8, 2024
1 parent 22028a2 commit ea935f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-latest-dev-release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
containerbuild:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12.3"]
python-version: ["3.10", "3.11", "3.12"]

runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
containerbuild:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12.3"]
python-version: ["3.10", "3.11", "3.12"]

runs-on: ubuntu-latest
needs: publish-latest-release-to-pypi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12.3"]
python-version: ["3.10", "3.11", "3.12"]
test-type: ["unit", "acceptance"]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit ea935f8

Please sign in to comment.