Skip to content

Commit af38ae3

Browse files
committed
Update book.yml
1 parent 4aef36c commit af38ae3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/book.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ jobs:
1010
runs-on: macos-latest
1111
steps:
1212
- name: Install brew dependencies
13-
run: brew install fftw openblas swig ffmpeg
13+
run: brew install fftw openblas swig ffmpeg python@3.8
1414

1515
- uses: actions/checkout@v2
1616

1717
- name: Install python dependencies
1818
run: |
1919
cp .pythranrc /Users/runner
20-
pip3 install -r requirements.txt
20+
/usr/local/opt/python@3.8/bin/pip3.8 install -r requirements.txt
2121
2222
- name: Install Julia packages
2323
run: julia -e '
2424
using Pkg; Pkg.add(["REPL", "PyCall"]);
25-
ENV["PYTHON"]="/usr/local/bin/python3";
25+
ENV["PYTHON"]="/usr/local/opt/python@3.8/bin/python3";
2626
Pkg.build("PyCall")'
2727

2828
- name: Build the book

0 commit comments

Comments
 (0)