Skip to content

Commit

Permalink
Use python 3.12 base image. (#400)
Browse files Browse the repository at this point in the history
* Use python 3.12 base image.

* Newsfile

* Switch to Python 3.12 in CI
  • Loading branch information
zeromage authored Nov 20, 2024
1 parent 50d674f commit e7e8a00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: matrix-org/setup-python-poetry@v1
with:
install-project: "false"
python-version: "3.11"
python-version: "3.12"

- run: poetry run tox -e check_codestyle

Expand All @@ -27,7 +27,7 @@ jobs:
uses: matrix-org/setup-python-poetry@v1
with:
install-project: "false"
python-version: "3.11"
python-version: "3.12"

- run: poetry run tox -e check_types

Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.12"
- run: python -m pip install -e .
- run: python -m twisted.trial tests

Expand Down
1 change: 1 addition & 0 deletions changelog.d/400.docker
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Use Python 3.12 as a base for the Docker image instead of Python 3.11.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# docker build -f docker/Dockerfile .
#

ARG PYTHON_VERSION=3.11
ARG PYTHON_VERSION=3.12

###
### Stage 0: generate requirements.txt
Expand Down

0 comments on commit e7e8a00

Please sign in to comment.