Skip to content

Commit

Permalink
Upgrade minimium supported version to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Jan 31, 2024
1 parent 7dd7d4d commit 2f4a9f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ build-backend = "setuptools.build_meta"
# skip = ["*-musllinux_*", "*-win32", "*-manylinux_i686"]
# Building for these platforms is enough since we are using abi3 packages
build = [
"cp37-macosx_x86_64",
"cp38-macosx_x86_64",
"cp38-macosx_arm64",
"cp37-win_amd64",
"cp37-win32",
"cp37-manylinux_x86_64",
"cp37-manylinux_aarch64",
"cp38-win_amd64",
"cp38-win32",
"cp38-manylinux_x86_64",
"cp38-manylinux_aarch64",
]
before-all = "make preprocess"
test-requires = "pytest"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def get_tag(self):
python, abi, plat = super().get_tag()

if python.startswith("cp"):
# on CPython, our wheels are abi3 and compatible back to 3.7
return "cp37", "abi3", plat
# on CPython, our wheels are abi3 and compatible back to 3.8
return "cp38", "abi3", plat

return python, abi, plat

Expand Down

0 comments on commit 2f4a9f4

Please sign in to comment.