Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
CIBW_BEFORE_BUILD_LINUX: pip install protobuf
CIBW_BEFORE_BUILD_WINDOWS: python -m pip install protobuf
CIBW_BEFORE_BUILD_MACOS: pip install protobuf
CIBW_ENABLE: "cpython-freethreading"
CIBW_TEST_REQUIRES_LINUX: pytest pytest-xdist ruff mypy onnxruntime onnxscript
CIBW_TEST_REQUIRES_MACOS: pytest pytest-xdist
CIBW_TEST_REQUIRES_WINDOWS: pytest pytest-xdist
Expand All @@ -41,13 +40,13 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm, windows-2022, macos-15]
python: ["cp313t", "cp312", "cp311", "cp310"] # because of abi3 we don't need to build separate whls for python 3.13, 3.14
python: ["cp314t", "cp312", "cp311", "cp310"] # because of abi3 we don't need to build separate whls for python 3.13, 3.14
steps:
- uses: actions/checkout@v7.0.0
with:
submodules: recursive
- name: Build wheels
uses: pypa/cibuildwheel@8d2b08b68458a16aeb24b64e68a09ab1c8e82084
uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: wheels-${{ matrix.os }}-${{ matrix.python }}
Expand Down