Skip to content

Commit 1b0cd2a

Browse files
committed
drop Python 3.7 (EOL)
1 parent 1505cb3 commit 1b0cd2a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ environment:
3232
PYTHON_DEF: "C:\\Python38-x64"
3333
PYTHON_VERSION: "3.8"
3434
# Python versions to build wheels for
35-
PYTHONVERS: C:\Python37-x64 C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64
35+
PYTHONVERS: C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64
3636
PYTHON_ARCH: "64"
3737

3838
install:

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ workflows:
141141
matrix:
142142
parameters:
143143
python_ver:
144-
- "3.7"
145-
- "3.9"
144+
- "3.8"
146145
- "3.11"
147146
filters:
148147
tags:

ci/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Compile wheels
1919
rm -rf /io/build
2020

21-
PYVERS=$(ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp36- | sort -V)
21+
PYVERS=$(ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp36- | grep -v cp37- | sort -V)
2222
# For testing:
2323
#PYVERS=/opt/python/cp311-cp311/bin
2424

0 commit comments

Comments
 (0)