Skip to content

Commit

Permalink
feat: add support for Python 3.10 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Oct 5, 2021
1 parent 705ba24 commit 01ee9c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

HERE = os.path.dirname(__file__)

@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
def build_libcrc32c(session):
session.env["PY_BIN"] = f"python{session.python}"
session.env["REPO_ROOT"] = HERE
Expand All @@ -39,7 +39,7 @@ def build_libcrc32c(session):
raise Exception("Unsupported")


@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
def check(session):
session.install("pytest")
session.install("--no-index", f"--find-links={HERE}/wheels", "google-crc32c")
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
zip_safe = True
Expand Down

0 comments on commit 01ee9c0

Please sign in to comment.