diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index cd00dd00..140bb100 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -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 @@ -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 @@ -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 diff --git a/changelog.d/400.docker b/changelog.d/400.docker new file mode 100644 index 00000000..7fd8eece --- /dev/null +++ b/changelog.d/400.docker @@ -0,0 +1 @@ +Use Python 3.12 as a base for the Docker image instead of Python 3.11. diff --git a/docker/Dockerfile b/docker/Dockerfile index 7b8664f9..7d6759d8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ # docker build -f docker/Dockerfile . # -ARG PYTHON_VERSION=3.11 +ARG PYTHON_VERSION=3.12 ### ### Stage 0: generate requirements.txt