We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cibuildwheel
pyproject.toml
1 parent 3a7c8f3 commit ecd99a3Copy full SHA for ecd99a3
.github/actions/reusable-build/action.yml
@@ -7,15 +7,11 @@ inputs:
7
runs:
8
using: 'composite'
9
steps:
10
- - name: Install `cibuildwheel`
11
- shell: bash
12
- run: |
13
- pip install cibuildwheel
14
-
15
- name: Build the package for Python ${{ inputs.python-version }}
16
17
18
- cibuildwheel --output-dir dist
+ uses: pypa/cibuildwheel@v3.1.3
+ env:
+ with:
+ output-dir: dist
19
20
- name: Upload wheel artifact for Python ${{ inputs.python-version }}
21
uses: actions/upload-artifact@v4
pyproject.toml
@@ -0,0 +1,8 @@
1
+[build-system]
2
+requires = [
3
+ "setuptools",
4
+ "wheel",
5
+]
6
+
+[tool.cibuildwheel]
+environment = { TF_VERSION="RELEASED_TF_2" }
0 commit comments