Skip to content

Commit

Permalink
Merge pull request #600 from libAtoms/py-3.11-wheels
Browse files Browse the repository at this point in the history
Add Python 3.11 support
  • Loading branch information
jameskermode authored Jun 15, 2023
2 parents ad0e58d + b59ce6c commit 72aaf3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ jobs:
./bin/gitversion --hash-only > build/${QUIP_ARCH}/VERSION
echo "CIBW_ENVIRONMENT=$CIBW_ENVIRONMENT"
if [ "$RUNNER_OS" == "macOS" ]; then
export CIBW_SKIP="cp27-* cp35-* cp36-* cp311-* pp* *musllinux*"
export CIBW_SKIP="cp27-* cp35-* cp36-* pp*"
python -m cibuildwheel --output-dir wheelhouse --archs $ARCHS build/${QUIP_ARCH}
else
for CIBW_MANYLINUX_X86_64_IMAGE in manylinux2010 manylinux2014; do
if [ "$CIBW_MANYLINUX_X86_64_IMAGE" == "manylinux2010" ]; then
export CIBW_SKIP="cp27-* cp35-* cp36-* cp310-* cp311-* pp* *musllinux*"
else
export CIBW_SKIP="cp27-* cp35-* cp36-* cp311-* pp* *musllinux*"
export CIBW_SKIP="cp27-* cp35-* cp36-* pp* *musllinux*"
fi
export CIBW_MANYLINUX_X86_64_IMAGE
python -m cibuildwheel --output-dir wheelhouse --archs $ARCHS build/${QUIP_ARCH}
Expand Down

0 comments on commit 72aaf3f

Please sign in to comment.