feat: add support for python 3.12

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

View File

@ -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

View File

@ -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
@ -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

View File

@ -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
@ -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

View File

@ -10,10 +10,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

View File

@ -13,6 +13,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",
]