Skip to content

Commit d142fb7

Browse files
authored
Release 0.11.24
Merge pull request #1644 from AMICI-dev/release_0.11.24
2 parents 287364e + cdf46a5 commit d142fb7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+505
-100
lines changed

.github/workflows/deploy_branch.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,16 @@ jobs:
77

88
runs-on: ubuntu-20.04
99

10+
strategy:
11+
matrix:
12+
python-version: [3.8]
13+
1014
steps:
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
1120
- uses: actions/checkout@master
1221
with:
1322
fetch-depth: 20

.github/workflows/deploy_protected.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,15 @@ jobs:
1616

1717
runs-on: ubuntu-20.04
1818

19+
strategy:
20+
matrix:
21+
python-version: [3.8]
22+
1923
steps:
24+
- name: Set up Python ${{ matrix.python-version }}
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: ${{ matrix.python-version }}
2028
- uses: actions/checkout@master
2129
- run: git archive -o docker/amici.tar.gz --format=tar.gz HEAD
2230
- name: Publish to Registry

.github/workflows/deploy_release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ jobs:
1010

1111
runs-on: ubuntu-20.04
1212

13+
strategy:
14+
matrix:
15+
python-version: [3.8]
16+
1317
steps:
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
1423
- uses: actions/checkout@master
1524
with:
1625
fetch-depth: 20

.github/workflows/test_benchmark_collection_models.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,16 @@ jobs:
1919

2020
runs-on: ubuntu-20.04
2121

22+
strategy:
23+
matrix:
24+
python-version: [ 3.8 ]
25+
2226
steps:
27+
- name: Set up Python ${{ matrix.python-version }}
28+
uses: actions/setup-python@v2
29+
with:
30+
python-version: ${{ matrix.python-version }}
31+
2332
- uses: actions/checkout@master
2433
with:
2534
fetch-depth: 20

.github/workflows/test_doc.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,16 @@ jobs:
1818

1919
runs-on: ubuntu-20.04
2020

21+
strategy:
22+
matrix:
23+
python-version: [3.8]
24+
2125
steps:
26+
- name: Set up Python ${{ matrix.python-version }}
27+
uses: actions/setup-python@v2
28+
with:
29+
python-version: ${{ matrix.python-version }}
30+
2231
- uses: actions/checkout@master
2332
- run: git fetch --prune --unshallow
2433

@@ -44,7 +53,16 @@ jobs:
4453

4554
runs-on: ubuntu-20.04
4655

56+
strategy:
57+
matrix:
58+
python-version: [ 3.8 ]
59+
4760
steps:
61+
- name: Set up Python ${{ matrix.python-version }}
62+
uses: actions/setup-python@v2
63+
with:
64+
python-version: ${{ matrix.python-version }}
65+
4866
- uses: actions/checkout@master
4967
- run: git fetch --prune --unshallow
5068

@@ -55,12 +73,6 @@ jobs:
5573
run: |
5674
sudo scripts/downloadAndBuildDoxygen.sh
5775
58-
- name: Set up Python 3.8
59-
uses: actions/setup-python@v2
60-
with:
61-
# Semantic version range syntax or exact version of a Python version
62-
python-version: '3.8'
63-
6476
# install amici dependencies
6577
- name: apt
6678
run: |

.github/workflows/test_install.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,16 @@ jobs:
77

88
runs-on: ubuntu-20.04
99

10+
strategy:
11+
matrix:
12+
python-version: [3.8]
13+
1014
steps:
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
1120
- uses: actions/checkout@master
1221
- run: git fetch --prune --unshallow
1322

@@ -46,7 +55,16 @@ jobs:
4655

4756
runs-on: ubuntu-20.04
4857

58+
strategy:
59+
matrix:
60+
python-version: [3.8]
61+
4962
steps:
63+
- name: Set up Python ${{ matrix.python-version }}
64+
uses: actions/setup-python@v2
65+
with:
66+
python-version: ${{ matrix.python-version }}
67+
5068
- uses: actions/checkout@master
5169
- run: git fetch --prune --unshallow
5270

.github/workflows/test_performance.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,16 @@ jobs:
2121

2222
runs-on: ubuntu-20.04
2323

24+
strategy:
25+
matrix:
26+
python-version: [3.8]
27+
2428
steps:
29+
- name: Set up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v2
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
2534
- uses: actions/checkout@master
2635
with:
2736
fetch-depth: 20
@@ -31,7 +40,7 @@ jobs:
3140
run: |
3241
sudo apt-get update \
3342
&& sudo apt-get install -y swig libatlas-base-dev
34-
- run: pip3 install petab shyaml
43+
- run: pip3 install petab shyaml build
3544

3645
- run: echo "${HOME}/.local/bin/" >> $GITHUB_PATH
3746
- run: echo "${GITHUB_WORKSPACE}/tests/performance/" >> $GITHUB_PATH
@@ -40,7 +49,8 @@ jobs:
4049
- name: Create AMICI sdist
4150
run: |
4251
cd python/sdist \
43-
&& check_time.sh create_sdist /usr/bin/python3 setup.py sdist
52+
&& check_time.sh create_sdist python3 -m build --sdist
53+
4454
- name: Install AMICI sdist
4555
run: |
4656
AMICI_PARALLEL_COMPILE=2 check_time.sh \

.github/workflows/test_petab_test_suite.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,16 @@ jobs:
2121
env:
2222
ENABLE_GCOV_COVERAGE: TRUE
2323

24+
strategy:
25+
matrix:
26+
python-version: [3.8]
27+
2428
steps:
29+
- name: Set up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v2
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
2534
- uses: actions/checkout@master
2635
with:
2736
fetch-depth: 20

.github/workflows/test_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: [3.7, 3.8, 3.9]
14+
python-version: [3.8, 3.9, '3.10']
1515
os: [ubuntu-20.04, macos-latest]
1616

1717
runs-on: ${{ matrix.os }}

.github/workflows/test_python_cplusplus.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,16 @@ jobs:
1212
ENABLE_GCOV_COVERAGE: "TRUE"
1313
CI_SONARCLOUD: "TRUE"
1414

15+
strategy:
16+
matrix:
17+
python-version: [ 3.8 ]
18+
1519
steps:
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
1625
- uses: actions/checkout@master
1726
- run: git fetch --prune --unshallow
1827

0 commit comments

Comments
 (0)