feature: add CPython 3.11 support

This commit is contained in:
mayeut
2022-05-23 20:47:08 +02:00
parent 79bfea0817
commit b8abcb128c
10 changed files with 80 additions and 20 deletions
+1 -1
View File
@@ -45,6 +45,6 @@ def test(tmp_path):
expected_wheels = [
w.replace("cp38-cp38", "cp38-abi3")
for w in utils.expected_wheels("spam", "0.1.0")
if "-pp" not in w and "-cp39" not in w and "-cp310" not in w
if "-pp" not in w and "-cp39" not in w and "-cp310" not in w and "-cp311" not in w
]
assert set(actual_wheels) == set(expected_wheels)