Skip to content

Commit

Permalink
Add py311, py312
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Nov 14, 2023
1 parent db04ad8 commit 3ce9133
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ce9133

Please sign in to comment.