Skip to content

Commit 0895990

Browse files
authored
Add Python 3.11 to the CI test matrix (#52)
1 parent 29e1db8 commit 0895990

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'github-actions'
4+
directory: '/'
5+
schedule:
6+
interval: 'weekly'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
source: ["conda-forge"]
1919
# os: ["ubuntu-latest"]
2020
# source: ["source"]
21-
python-version: ["3.8", "3.9", "3.10"]
21+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2222
graphblas-version: ["7.3.0"]
2323
steps:
2424
- name: Checkout

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,22 @@
7878
license="Apache License 2.0",
7979
package_data=package_data,
8080
include_package_data=True,
81+
classifiers=[
82+
"Development Status :: 4 - Beta",
83+
"License :: OSI Approved :: Apache Software License",
84+
"Operating System :: MacOS :: MacOS X",
85+
"Operating System :: POSIX :: Linux",
86+
"Operating System :: Microsoft :: Windows",
87+
"Programming Language :: Python",
88+
"Programming Language :: Python :: 3",
89+
"Programming Language :: Python :: 3.8",
90+
"Programming Language :: Python :: 3.9",
91+
"Programming Language :: Python :: 3.10",
92+
"Programming Language :: Python :: 3.11",
93+
"Programming Language :: Python :: 3 :: Only",
94+
"Intended Audience :: Science/Research",
95+
"Topic :: Scientific/Engineering",
96+
"Topic :: Scientific/Engineering :: Mathematics",
97+
],
8198
zip_safe=False,
8299
)

0 commit comments

Comments
 (0)