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.
1 parent cf45840 commit 1b303f6Copy full SHA for 1b303f6
.github/workflows/build.yml
@@ -15,6 +15,12 @@ jobs:
15
with:
16
python-version: ${{ matrix.python-version }}
17
18
+ - name: Install dependencies with pinned NumPy on Win/Py3.13
19
+ # This step pins NumPy to a working version ONLY for the configuration
20
+ # that is known to fail with numpy 2.3.0.
21
+ if: matrix.os == 'windows' && matrix.python-version == '3.13'
22
+ run: python -m pip install "numpy<2.3"
23
+
24
- name: Build and install
25
run: python -m pip install .
26
0 commit comments