Skip to content

Commit

Permalink
asv: use os dependent pathsep when pre-pending to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
pijyoi committed Apr 20, 2024
1 parent da95f8e commit 9f6e842
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 9f6e842

Please sign in to comment.