Skip to content

Commit 87c2cf7

Browse files
committedJun 11, 2023
Add support for Python 3.11
1 parent 37b58bb commit 87c2cf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.github/workflows/general-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.7,'3.10']
15+
python-version: [3.7,'3.11']
1616
simplify: [0,1,autoopt]
1717

1818
steps:

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"License :: OSI Approved :: BSD License",
6464
"Operating System :: OS Independent",
6565
],
66-
python_requires='>=3.6, <3.11',
66+
python_requires='>=3.6, <3.12',
6767
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
6868
package_data={
6969
'': [

0 commit comments

Comments
 (0)
Please sign in to comment.