Skip to content

Commit

Permalink
feat: add support for python 3.12 (#573)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
xoxys and renovate[bot] authored Oct 16, 2023
1 parent 66f7738 commit d6ce15f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .woodpecker/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ when:

steps:
build:
image: docker.io/library/python:3.11
image: docker.io/library/python:3.12
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
Expand Down
4 changes: 2 additions & 2 deletions .woodpecker/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ when:

steps:
build:
image: docker.io/library/python:3.11
image: docker.io/library/python:3.12
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
Expand Down Expand Up @@ -45,7 +45,7 @@ steps:
- event: [tag]

publish-pypi:
image: docker.io/library/python:3.11
image: docker.io/library/python:3.12
secrets:
- source: pypi_password
target: POETRY_HTTP_BASIC_PYPI_PASSWORD
Expand Down
4 changes: 2 additions & 2 deletions .woodpecker/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ when:

steps:
check-format:
image: docker.io/library/python:3.11
image: docker.io/library/python:3.12
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
Expand All @@ -17,7 +17,7 @@ steps:
PY_COLORS: "1"

check-coding:
image: docker.io/library/python:3.11
image: docker.io/library/python:3.12
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
Expand Down
3 changes: 2 additions & 1 deletion .woodpecker/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ matrix:
- docker.io/library/python:3.9
- docker.io/library/python:3.10
- docker.io/library/python:3.11
- docker.io/library/python:3.12

steps:
fetch:
image: docker.io/library/python:3.11
image: docker.io/library/python:3.12
commands:
- git fetch -tq

Expand Down
2 changes: 1 addition & 1 deletion Containerfile.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-alpine@sha256:3e73c0b6c1f0205225359acac5c8ab1852e7281248d72afda3e1bb8c6f47deab
FROM python:3.12-alpine@sha256:ae35274f417fc81ba6ee1fc84206e8517f28117566ee6a04a64f004c1409bdac

LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
Expand Down

0 comments on commit d6ce15f

Please sign in to comment.