File tree 3 files changed +17
-27
lines changed
3 files changed +17
-27
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ jobs:
12
12
deploy-book :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v3
16
16
17
17
# Install dependencies
18
- - name : Set up Python 3.7
19
- uses : actions/setup-python@v1
18
+ - name : Set up Python 3.9
19
+ uses : actions/setup-python@v4
20
20
with :
21
- python-version : 3.7
21
+ python-version : 3.9
22
22
23
23
- name : Install dependencies
24
24
run : |
34
34
35
35
# Push the book's HTML to github-pages
36
36
- name : GitHub Pages action
37
- uses : peaceiris/actions-gh-pages@v3.6 .1
37
+ uses : peaceiris/actions-gh-pages@v3.9 .1
38
38
with :
39
39
github_token : ${{ secrets.GITHUB_TOKEN }}
40
40
publish_dir : ./fdm-jupyter-book/_build/html
Original file line number Diff line number Diff line change @@ -20,29 +20,29 @@ jobs:
20
20
DEVITO_ARCH : " ${{ matrix.compiler }}"
21
21
DEVITO_LANGUAGE : ${{ matrix.language }}
22
22
DEVITO_BACKEND : " core"
23
- PYTHON_VERSION : " 3.7 "
23
+ PYTHON_VERSION : " 3.9 "
24
24
RUN_CMD : " "
25
25
26
26
strategy :
27
27
# Prevent all build to stop if a single one fails
28
28
fail-fast : false
29
29
matrix :
30
- name : [tutos-ubuntu-gcc-py37 ,
31
- tutos-osx-gcc-py37 ,
32
- tutos-osx-clang-py37 ]
30
+ name : [tutos-ubuntu-gcc-py39 ,
31
+ tutos-osx-gcc-py39 ,
32
+ tutos-osx-clang-py39 ]
33
33
34
34
include :
35
- - name : tutos-ubuntu-gcc-py37
36
- os : ubuntu-16.04
37
- compiler : gcc-7
35
+ - name : tutos-ubuntu-gcc-py39
36
+ os : ubuntu-latest
37
+ compiler : gcc-9
38
38
language : " openmp"
39
39
40
- - name : tutos-osx-gcc-py37
40
+ - name : tutos-osx-gcc-py39
41
41
os : macos-latest
42
42
compiler : gcc-9
43
43
language : " openmp"
44
44
45
- - name : tutos-osx-clang-py37
45
+ - name : tutos-osx-clang-py39
46
46
os : macos-latest
47
47
compiler : clang
48
48
language : " C"
@@ -51,10 +51,10 @@ jobs:
51
51
- name : Checkout devito_book
52
52
uses : actions/checkout@v1
53
53
54
- - name : Set up Python 3.7
54
+ - name : Set up Python 3.9
55
55
uses : actions/setup-python@v1
56
56
with :
57
- python-version : 3.7
57
+ python-version : 3.9
58
58
59
59
- name : Install compilers for OSX
60
60
if : runner.os == 'macOS'
Original file line number Diff line number Diff line change 1
- pip >= 9.0.1
2
- numpy >= 1.14
3
- sympy < 1.6
4
- scipy
5
- pytest >= 3.6
6
1
pytest-runner
7
2
nbval
8
3
cached-property
9
4
py-cpuinfo
10
- cgen >= 2020.1
11
- codepy >= 2019.1
12
- click
13
- codecov
14
- pytest-cov
15
- devito
5
+ devito < 4.9
16
6
jupyter-book
17
7
matplotlib
18
8
vtk == 8.1.2
You can’t perform that action at this time.
0 commit comments