From 2f4a9f4138003ea193c772c3104eb971dc0781d7 Mon Sep 17 00:00:00 2001 From: Yifei Kong Date: Wed, 31 Jan 2024 17:37:52 +0800 Subject: [PATCH] Upgrade minimium supported version to 3.8 --- pyproject.toml | 10 +++++----- setup.py | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 74f12f7d..a3ea7e49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py index 044602b0..32cc6fd3 100644 --- a/setup.py +++ b/setup.py @@ -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