Skip to content

Commit 6fb5591

Browse files
[DEV-96564] Add support for python 3.10, 3.11
1 parent 227bfd8 commit 6fb5591

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
)
2929

3030

31-
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"])
31+
@nox.session(python=["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
3232
def test(session):
3333
session.install(".[develop]")
3434

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from setuptools import find_packages, setup
2222

23-
VERSION = (7, 4, 1)
23+
VERSION = (7, 4, 1, "dev0")
2424
__version__ = VERSION
2525
__versionstr__ = ".".join(map(str, VERSION))
2626

@@ -76,6 +76,8 @@
7676
"Programming Language :: Python :: 3.7",
7777
"Programming Language :: Python :: 3.8",
7878
"Programming Language :: Python :: 3.9",
79+
"Programming Language :: Python :: 3.10",
80+
"Programming Language :: Python :: 3.11",
7981
"Programming Language :: Python :: Implementation :: CPython",
8082
"Programming Language :: Python :: Implementation :: PyPy",
8183
],

0 commit comments

Comments
 (0)