feat: add support for python 3.12

This commit is contained in:
Robert Kaussow 2023-10-16 13:34:08 +02:00
parent 07c1e25ca6
commit 6c825dd437
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
5 changed files with 8 additions and 6 deletions

View File

@ -7,7 +7,7 @@ when:
steps: steps:
build: build:
image: docker.io/library/python:3.11 image: docker.io/library/python:3.12
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq

View File

@ -7,7 +7,7 @@ when:
steps: steps:
build: build:
image: docker.io/library/python:3.11 image: docker.io/library/python:3.12
commands: commands:
- git fetch -tq - git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq - pip install poetry poetry-dynamic-versioning -qq
@ -45,7 +45,7 @@ steps:
- event: [tag] - event: [tag]
publish-pypi: publish-pypi:
image: docker.io/library/python:3.11 image: docker.io/library/python:3.12
secrets: secrets:
- source: pypi_password - source: pypi_password
target: POETRY_HTTP_BASIC_PYPI_PASSWORD target: POETRY_HTTP_BASIC_PYPI_PASSWORD

View File

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

View File

@ -11,10 +11,11 @@ matrix:
- docker.io/library/python:3.9 - docker.io/library/python:3.9
- docker.io/library/python:3.10 - docker.io/library/python:3.10
- docker.io/library/python:3.11 - docker.io/library/python:3.11
- docker.io/library/python:3.12
steps: steps:
fetch: fetch:
image: docker.io/library/python:3.11 image: docker.io/library/python:3.12
commands: commands:
- git fetch -tq - git fetch -tq

View File

@ -14,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Systems Administration", "Topic :: System :: Systems Administration",
"Topic :: Utilities", "Topic :: Utilities",
"Topic :: Software Development", "Topic :: Software Development",