We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924b2de commit 9da18ceCopy full SHA for 9da18ce
.github/workflows/build_wheels.yml
@@ -4,11 +4,16 @@ on: [push, pull_request]
4
5
jobs:
6
build_wheels_windows:
7
- name: ${{ matrix.os }} ${{ matrix.python-version }} ${{ matrix.arch }} wheels
+ name: ${{ matrix.os }} ${{ matrix.python-version }} ${{ matrix.arch }} wheels
8
runs-on: ${{ matrix.os }}
9
env:
10
- TEMP: C:\Temp
11
- TMP: C:\Temp
+ TEMP: ${{ runner.temp }}
+ TMP: ${{ runner.temp }}
12
+ OMP_NUM_THREADS: "1"
13
+ OPENBLAS_NUM_THREADS: "1"
14
+ MKL_NUM_THREADS: "1"
15
+ VECLIB_MAXIMUM_THREADS: "1"
16
+ NUMEXPR_NUM_THREADS: "1"
17
18
strategy:
19
matrix:
0 commit comments