We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aef36c commit af38ae3Copy full SHA for af38ae3
.github/workflows/book.yml
@@ -10,19 +10,19 @@ jobs:
10
runs-on: macos-latest
11
steps:
12
- name: Install brew dependencies
13
- run: brew install fftw openblas swig ffmpeg
+ run: brew install fftw openblas swig ffmpeg python@3.8
14
15
- uses: actions/checkout@v2
16
17
- name: Install python dependencies
18
run: |
19
cp .pythranrc /Users/runner
20
- pip3 install -r requirements.txt
+ /usr/local/opt/python@3.8/bin/pip3.8 install -r requirements.txt
21
22
- name: Install Julia packages
23
run: julia -e '
24
using Pkg; Pkg.add(["REPL", "PyCall"]);
25
- ENV["PYTHON"]="/usr/local/bin/python3";
+ ENV["PYTHON"]="/usr/local/opt/python@3.8/bin/python3";
26
Pkg.build("PyCall")'
27
28
- name: Build the book
0 commit comments