We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266d8d3 commit 1a79f8cCopy full SHA for 1a79f8c
1 file changed
.github/workflows/build-wheels.yml
@@ -114,14 +114,21 @@ jobs:
114
# Build and test wheels
115
- uses: actions/checkout@v4
116
117
- # Use MSVC with Ninja on Windows
118
- - uses: ilammy/msvc-dev-cmd@v1.13.0
+ # This python is used to patch the project, not to build!
+ - name: Set up Python
119
if: ${{ !inputs.dry-run }}
120
+ uses: actions/setup-python@v5
121
+ with:
122
+ python-version: "3.13"
123
124
- name: Apply patch
125
126
run: python apply_patch.py && python set_vtk_version.py ${{ inputs.vtk-tag }}
127
128
+ # Use MSVC with Ninja on Windows
129
+ - uses: ilammy/msvc-dev-cmd@v1.13.0
130
+ if: ${{ !inputs.dry-run }}
131
+
132
- name: Build wheel
133
134
uses: pypa/cibuildwheel@v3.3.1
0 commit comments