Skip to content

Commit 63f5166

Browse files
mayeutparthea
andauthored
feat: add support for Python 3.11 (#144)
* 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 <[email protected]>
1 parent 59cc99b commit 63f5166

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
HERE = os.path.dirname(__file__)
2626

27-
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
27+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
2828
def build_libcrc32c(session):
2929
session.env["PY_BIN"] = f"python{session.python}"
3030
session.env["REPO_ROOT"] = HERE
@@ -39,7 +39,7 @@ def build_libcrc32c(session):
3939
raise Exception("Unsupported")
4040

4141

42-
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10"])
42+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"])
4343
def check(session):
4444
session.install("pytest")
4545
session.install("--no-index", f"--find-links={HERE}/wheels", "google-crc32c")

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ classifiers =
3535
Programming Language :: Python :: 3.8
3636
Programming Language :: Python :: 3.9
3737
Programming Language :: Python :: 3.10
38-
38+
Programming Language :: Python :: 3.11
39+
3940
[options]
4041
zip_safe = True
4142
python_requires = >=3.6

0 commit comments

Comments
 (0)