diff --git a/.github/workflows/integration_build_test.yml b/.github/workflows/integration_build_test.yml index ad3fddf..7ca331d 100644 --- a/.github/workflows/integration_build_test.yml +++ b/.github/workflows/integration_build_test.yml @@ -21,7 +21,7 @@ jobs: max-parallel: 3 fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v1 diff --git a/setup.py b/setup.py index f3be4f1..4caa375 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ] with io.open('LICENSE.txt', 'r', encoding='utf-8') as f: @@ -50,5 +51,5 @@ extras_require=EXTRAS, packages=find_packages(exclude=['tests', 'tests.*']), include_package_data=True, - python_requires=">=3.8,<3.12" + python_requires=">=3.8,<3.13" )