Skip to content

Commit 75ddd5f

Browse files
authored
adding Python 3.9 (#157)
1 parent 7f63810 commit 75ddd5f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macOS-latest]
17-
python-version: [3.5, 3.6, 3.7, 3.8]
17+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1818
timeout-minutes: 15
1919
env:
2020
FC: gfortran-9
@@ -28,7 +28,7 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929

3030
- name: Install Valgrind
31-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8' }}
31+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }}
3232
run: |
3333
sudo apt-get update && sudo apt-get install valgrind
3434
@@ -46,7 +46,7 @@ jobs:
4646
cmake --build "build" --target install -- -j2
4747
4848
- name: Running tests (Ctest)
49-
if: ${{ matrix.python-version == '3.8' }} # only run for one py version, not necessary for all of them
49+
if: ${{ matrix.python-version == '3.9' }} # only run for one py version, not necessary for all of them
5050
run: |
5151
cd build
5252
if [ ${{ matrix.os }} == 'ubuntu-latest' ]; then
@@ -68,7 +68,7 @@ jobs:
6868
strategy:
6969
fail-fast: false
7070
matrix:
71-
python-version: [3.5, 3.6, 3.7, 3.8]
71+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
7272
timeout-minutes: 5
7373

7474
steps:
@@ -109,7 +109,7 @@ jobs:
109109
exit /b %errorlevel%
110110
111111
- name: Running tests (Ctest)
112-
if: ${{ matrix.python-version == '3.8' }} # only run for one py version, not necessary for all of them
112+
if: ${{ matrix.python-version == '3.9' }} # only run for one py version, not necessary for all of them
113113
shell: cmd
114114
run: |
115115
set PATH=%PATH%;%GITHUB_WORKSPACE%/bin

0 commit comments

Comments
 (0)