File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ jobs:
429
429
name : MacOS
430
430
strategy :
431
431
matrix :
432
- os : ['macos-12 ', 'macos-13 ']
432
+ os : ['macos-13 ', 'macos-14 ']
433
433
env :
434
434
BUILD_TYPE : " Release"
435
435
runs-on : ${{matrix.os}}
@@ -440,8 +440,13 @@ jobs:
440
440
with :
441
441
fetch-depth : 0
442
442
443
- - name : Install Python requirements
444
- run : python3 -m pip install -r third_party/requirements.txt
443
+ # Latest distros do not allow global pip installation
444
+ - name : Install Python requirements in venv
445
+ run : |
446
+ python3 -m venv .venv
447
+ . .venv/bin/activate
448
+ echo "$PATH" >> $GITHUB_PATH
449
+ python3 -m pip install -r third_party/requirements.txt
445
450
446
451
- name : Install hwloc
447
452
run : brew install hwloc jemalloc tbb
You can’t perform that action at this time.
0 commit comments