Skip to content

Commit

Permalink
[DEV-96564] Add support for python 3.10, 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pearsondaniels committed Oct 25, 2024
1 parent 227bfd8 commit 6fb5591
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
)


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

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from setuptools import find_packages, setup

VERSION = (7, 4, 1)
VERSION = (7, 4, 1, "dev0")
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down Expand Up @@ -76,6 +76,8 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down

0 comments on commit 6fb5591

Please sign in to comment.