Skip to content

Commit 552fdd4

Browse files
authored
Merge pull request numpy#26319 from pijyoi/fix-asv-win32
BUG: fix spin bench not running on Windows
2 parents 28a3cb3 + 9f6e842 commit 552fdd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.spin/cmds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def _run_asv(cmd):
309309
'/usr/local/lib/ccache', '/usr/local/lib/f90cache'
310310
])
311311
env = os.environ
312-
env['PATH'] = f'EXTRA_PATH:{PATH}'
312+
env['PATH'] = f'{EXTRA_PATH}{os.pathsep}{PATH}'
313313

314314
# Control BLAS/LAPACK threads
315315
env['OPENBLAS_NUM_THREADS'] = '1'

0 commit comments

Comments
 (0)