Skip to content

Commit

Permalink
feat: add support for Python 3.11 (#144)
Browse files Browse the repository at this point in the history
* chore: Update google crc32c to 1.1.2

This fixes aarch64 musllinux wheels build issue.

* ci: fix manylinux1 build

* feat: add support for Python 3.11

Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
mayeut and parthea committed Aug 31, 2022
1 parent 59cc99b commit 63f5166
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -24,7 +24,7 @@

HERE = os.path.dirname(__file__)

@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
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", "3.10"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
def check(session):
session.install("pytest")
session.install("--no-index", f"--find-links={HERE}/wheels", "google-crc32c")
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Expand Up @@ -35,7 +35,8 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

Programming Language :: Python :: 3.11

[options]
zip_safe = True
python_requires = >=3.6
Expand Down

0 comments on commit 63f5166

Please sign in to comment.