From 2014e4eea7790355bf1a38b307e5e469e579e9af Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Wed, 5 May 2021 11:26:53 -0500 Subject: [PATCH] Add a manylinux environment that should have Python 3.10. --- .github/workflows/tests.yml | 2 +- make-manylinux | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3e73d3cb..7cc7f3c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -77,7 +77,7 @@ jobs: strategy: matrix: python-version: [3.9] - image: [manylinux2010_x86_64, manylinux2014_aarch64, manylinux2014_ppc64le] + image: [manylinux2010_x86_64, manylinux2014_aarch64, manylinux2014_ppc64le, manylinux2014_x86_64] steps: - name: checkout diff --git a/make-manylinux b/make-manylinux index cc7a4ac5..0d41bd82 100755 --- a/make-manylinux +++ b/make-manylinux @@ -27,7 +27,7 @@ if [ -d /greenlet -a -d /opt/python ]; then mkdir -p /greenlet/wheelhouse OPATH="$PATH" which auditwheel - for variant in `ls -d /opt/python/cp{27,35,36,37,38,39}*`; do + for variant in `ls -d /opt/python/cp{27,35,36,37,38,39,310}*`; do export PATH="$variant/bin:$OPATH" echo "Building $variant $(python --version)"