Skip to content

Commit d304384

Browse files
committed
manylinux2010 stopped shipping Python 2.7, so use a tagged version that still has it.
See pypa/manylinux#428
1 parent a99dc79 commit d304384

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,15 +371,16 @@ jobs:
371371
# An alternate way to do this is to run the container directly with a uses:
372372
# and then the script runs inside it. That may work better with caching.
373373
# See https://github.com/pyca/bcrypt/blob/f6b5ee2eda76d077c531362ac65e16f045cf1f29/.github/workflows/wheel-builder.yml
374-
# The 2010 image is the last one that comes with Python 2.7.
374+
# The 2010 image is the most recent spec that comes with Python 2.7,
375+
# and only up through the tag 2021-02-06-3d322a5
375376
env:
376-
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}
377+
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}:2021-02-06-3d322a5
377378
run: |
378379
bash .manylinux.sh
379380
- name: Build zope.interface (i686)
380381
if: matrix.image == 'manylinux2010_i686'
381382
env:
382-
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}
383+
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}:2021-02-06-3d322a5
383384
PRE_CMD: linux32
384385
run: |
385386
bash .manylinux.sh

0 commit comments

Comments
 (0)