diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 049925c..1971845 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] name: Python ${{ matrix.python-version }} steps: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f5ef29a..d795562 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ test: parallel: matrix: - - python_version: ["3.8", "3.9", "3.10", "3.11"] + - python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] image: python:${python_version}-alpine before_script: diff --git a/setup.py b/setup.py index b4a20b6..5383c7c 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], python_requires=">=3.8", install_requires=[ diff --git a/tox.ini b/tox.ini index 3470ad1..cf17b6d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38, py39, py310, py311 +envlist = py38, py39, py310, py311, py312 [testenv] passenv = FAKE_API_ENDPOINT @@ -14,3 +14,4 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312