Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use python 3.12 base image. #400

Merged
merged 3 commits into from
Nov 20, 2024
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
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
Loading