Skip to content

Commit d51fa10

Browse files
committed
build: drop python 3.7
1 parent 6a9cf4f commit d51fa10

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest]
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
runs-on: "${{ matrix.os }}"
1818
steps:
1919
# Check out the code
@@ -212,7 +212,6 @@ jobs:
212212
- { os: ubuntu-latest, name: musllinux }
213213
- { os: macos-latest, name: macosx }
214214
py:
215-
- cp37
216215
- cp38
217216
- cp39
218217
- cp310

build-wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export PATH=/root/.cargo/bin:$PATH
1313

1414
mkdir -p build && rm -rf build/*
1515

16-
for PYBIN in /opt/python/{cp37-cp37m,cp38-cp38,cp39-cp39,cp310-cp310,cp311-cp311,cp312-cp312}/bin; do
16+
for PYBIN in /opt/python/{cp38-cp38,cp39-cp39,cp310-cp310,cp311-cp311,cp312-cp312}/bin; do
1717
export PYTHON_SYS_EXECUTABLE="$PYBIN/python"
1818

1919
"${PYBIN}/python" -m ensurepip

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ requires = ["setuptools", "wheel", "setuptools-rust>=1.2.0"]
33

44
[tool.black]
55
line-length = 80
6-
target-version = ['py37']
6+
target-version = ['py38']

0 commit comments

Comments
 (0)