Skip to content

Commit

Permalink
Don't build wheel for python 3.13 (#2123)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

Don't build wheel for python 3.13

### Type of change

- [ ] Bug Fix (non-breaking change which fixes an issue)
- [ ] New Feature (non-breaking change which adds functionality)
- [ ] Breaking Change (fix or feature that could cause existing
functionality not to work as expected)
- [ ] Documentation Update
- [ ] Refactoring
- [ ] Performance Improvement
- [ ] Test cases
- [ ] Python SDK impacted, Need to update PyPI
- [x] Other (please describe): CI
  • Loading branch information
yuzhichang authored Oct 29, 2024
1 parent 2f2d0b0 commit bca2188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
run: |
sudo rm -fr cmake-build-reldeb
sudo docker exec ${BUILDER_CONTAINER} bash -c "cd /infinity/ && rm -rf dist && /usr/local/bin/pip3.10 wheel . -v -w dist --config-settings=wheel.py-api=cp310 --config-settings=build-dir='cmake-build-release' && /usr/local/bin/pip3.11 wheel . -v -w dist --config-settings=wheel.py-api=cp311 --config-settings=build-dir='cmake-build-release' && /usr/local/bin/pip3.12 wheel . -v -w dist --config-settings=wheel.py-api=cp312 --config-settings=build-dir='cmake-build-release' && /usr/local/bin/pip3.13 wheel . -v -w dist --config-settings=wheel.py-api=cp313 --config-settings=build-dir='cmake-build-release' && auditwheel repair --plat manylinux_2_17_x86_64 dist/infinity*linux_x86_64.whl && /usr/local/bin/pip3.10 wheel ./python/infinity_sdk -v -w wheelhouse --no-deps"
sudo docker exec ${BUILDER_CONTAINER} bash -c "cd /infinity/ && rm -rf dist && /usr/local/bin/pip3.10 wheel . -v -w dist --config-settings=wheel.py-api=cp310 --config-settings=build-dir='cmake-build-release' && /usr/local/bin/pip3.11 wheel . -v -w dist --config-settings=wheel.py-api=cp311 --config-settings=build-dir='cmake-build-release' && /usr/local/bin/pip3.12 wheel . -v -w dist --config-settings=wheel.py-api=cp312 --config-settings=build-dir='cmake-build-release' && auditwheel repair --plat manylinux_2_17_x86_64 dist/infinity*linux_x86_64.whl && /usr/local/bin/pip3.10 wheel ./python/infinity_sdk -v -w wheelhouse --no-deps"
- name: Publish package distributions to PyPI
if: startsWith(github.ref, 'refs/tags/v')
Expand Down

0 comments on commit bca2188

Please sign in to comment.