From 93c14c805b83eae7a5e2b15afd655c8e59f44018 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sun, 14 Feb 2021 17:22:37 +0100 Subject: [PATCH] Pin `manylinux2010` image used to update dependencies `manylinux2010` dropped CPython 2.7 Use the tag `2021-02-06-3d322a5` for dependency update which is the last supporting CPython 2.7 --- bin/update_dependencies.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/update_dependencies.py b/bin/update_dependencies.py index 937a0572..65d06fe0 100755 --- a/bin/update_dependencies.py +++ b/bin/update_dependencies.py @@ -28,7 +28,8 @@ if '--no-docker' in sys.argv: '--output-file', f'cibuildwheel/resources/constraints-python{python_version}.txt' ], check=True) else: - image_runner = 'quay.io/pypa/manylinux2010_x86_64:latest' + # latest manylinux2010 image with cpython 2.7 support + image_runner = 'quay.io/pypa/manylinux2010_x86_64:2021-02-06-3d322a5' subprocess.run(['docker', 'pull', image_runner], check=True) for python_version in PYTHON_VERSIONS: abi_flags = '' if int(python_version) >= 38 else 'm'