diff --git a/.github/workflows/test_all.yml b/.github/workflows/test_all.yml index 3a8ef8c9..8208ed40 100644 --- a/.github/workflows/test_all.yml +++ b/.github/workflows/test_all.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, "3.10", "3.11"] + python-version: [3.8, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/test_core.yml b/.github/workflows/test_core.yml index ce874d92..f0753568 100644 --- a/.github/workflows/test_core.yml +++ b/.github/workflows/test_core.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index cd311456..f42ac65e 100644 --- a/setup.py +++ b/setup.py @@ -92,6 +92,7 @@ def get_version() -> str: "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", ], python_requires=">=3.8",