Skip to content

Commit

Permalink
Add a manylinux environment that should have Python 3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed May 5, 2021
1 parent 352b974 commit 2014e4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion make-manylinux
Expand Up @@ -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)"

Expand Down

0 comments on commit 2014e4e

Please sign in to comment.