Skip to content

Commit 1e5a810

Browse files
committed
Use manylinux1 images for building Py2.7 wheels.
1 parent 8f4dc48 commit 1e5a810

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313

1414
matrix:
1515
image:
16-
- manylinux2010_x86_64
17-
- manylinux2010_i686
16+
- manylinux1_x86_64
17+
- manylinux1_i686
1818
- manylinux_2_24_x86_64
1919
- manylinux_2_24_i686
2020
- manylinux_2_24_aarch64

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ VERSION=$(shell python -c 'import re; f=open("fastrlock/__init__.py"); print(re.
77
PYTHON_WITH_CYTHON=$(shell $(PYTHON) -c 'import Cython.Compiler' >/dev/null 2>/dev/null && echo " --with-cython" || true)
88
PY2_WITH_CYTHON=$(shell $(PYTHON2) -c 'import Cython.Compiler' >/dev/null 2>/dev/null && echo " --with-cython" || true)
99

10+
# manylinux1 images still include Python 2.7
1011
MANYLINUX_IMAGES= \
11-
manylinux2010_x86_64 \
12-
manylinux2010_i686 \
12+
manylinux1_x86_64 \
13+
manylinux1_i686 \
1314
manylinux_2_24_x86_64 \
1415
manylinux_2_24_i686 \
1516
manylinux_2_24_aarch64 \

0 commit comments

Comments
 (0)