Skip to content

Commit

Permalink
Merge pull request numpy#26319 from pijyoi/fix-asv-win32
Browse files Browse the repository at this point in the history
BUG: fix spin bench not running on Windows
  • Loading branch information
mattip authored Apr 20, 2024
2 parents 28a3cb3 + 9f6e842 commit 552fdd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .spin/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def _run_asv(cmd):
'/usr/local/lib/ccache', '/usr/local/lib/f90cache'
])
env = os.environ
env['PATH'] = f'EXTRA_PATH:{PATH}'
env['PATH'] = f'{EXTRA_PATH}{os.pathsep}{PATH}'

# Control BLAS/LAPACK threads
env['OPENBLAS_NUM_THREADS'] = '1'
Expand Down

0 comments on commit 552fdd4

Please sign in to comment.