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 7b38876 commit a965a83Copy full SHA for a965a83
.github/workflows/book.yml
@@ -9,13 +9,12 @@ jobs:
9
deploy-book:
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Install dependencies
13
- run: sudo apt-get install -y libfftw3-dev libopenblas-dev ffmpeg swig
14
-
15
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
+ - uses: julia-actions/setup-julia@v2
16
17
- name: Install python dependencies
18
- run: pip3 install --user -r requirements.txt
+ run: python -m pip install -r requirements.txt
19
20
- name: Install Julia packages
21
run: julia -e ' using Pkg; Pkg.add(["REPL", "PyCall"]); Pkg.build("PyCall")'
0 commit comments