From 3ce91333a87c70a9a63b49fce81c3ce771e7ba13 Mon Sep 17 00:00:00 2001 From: Chris Barnes Date: Tue, 14 Nov 2023 14:50:15 +0000 Subject: [PATCH] Add py311, py312 --- .github/workflows/test-install.yml | 2 ++ .github/workflows/test-package.yml | 2 ++ setup.py | 4 +++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-install.yml b/.github/workflows/test-install.yml index b0273179..f9390c1d 100644 --- a/.github/workflows/test-install.yml +++ b/.github/workflows/test-install.yml @@ -18,6 +18,8 @@ jobs: python-version: - "3.9" - "3.10" + - "3.11" + - "3.12" runs-on: ${{ matrix.os }} steps: # This cancels any such job that is still runnning diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 250086ee..b8cb3026 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -10,6 +10,8 @@ jobs: python-version: - "3.9" - "3.10" + - "3.11" + - "3.12" igraph: ["igraph", "no-igraph"] steps: # This cancels any such job that is still runnning diff --git a/setup.py b/setup.py index d0565867..f1595049 100644 --- a/setup.py +++ b/setup.py @@ -68,12 +68,14 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], install_requires=install_requires, extras_require=dict(extras_require), tests_require=extras_require["dev"], # CI runs against >=3.8 - python_requires='>=3.9', + python_requires='>=3.9,<4.0', zip_safe=False, include_package_data=True