Skip to content

Commit 768eb5b

Browse files
Merge pull request #454 from PEtab-dev/develop
Release 0.1.8
2 parents 3f1d7be + 68167b6 commit 768eb5b

22 files changed

+895
-619
lines changed

.github/workflows/ci_tests.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI tests
1+
name: CI
22

33
# trigger
44
on: [push]
@@ -8,30 +8,38 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.6]
11+
python-version: [3.8]
1212

1313
steps:
1414
- name: Check out repository
1515
uses: actions/checkout@v2
16+
1617
- name: Prepare python ${{ matrix.python-version }}
1718
uses: actions/setup-python@v1
1819
with:
1920
python-version: ${{ matrix.python-version }}
20-
- name: Cache pip
21+
22+
- name: Cache
2123
uses: actions/cache@v1
2224
with:
2325
path: ~/.cache/pip
2426
key: ${{ runner.os }}-${{ hashFiles('**/.ci_pip_reqs.txt') }}-${{ hashFiles('**/setup.py') }}
2527
restore-keys: |
2628
${{ runner.os }}-
29+
2730
- name: Install dependencies
2831
run: |
2932
python -m pip install --upgrade pip
3033
pip install -r .ci_pip_reqs.txt
3134
pip install -e .[reports,combine]
35+
3236
- name: Run tests
3337
run: |
34-
pytest --cov
38+
pytest --cov --cov-report=xml tests
3539
python -m flake8 --exclude=build,doc,example,tmp --extend-ignore=F403,F405
40+
3641
- name: Coverage
37-
run: codecov -t ${{ secrets.CODECOV_TOKEN }}
42+
uses: codecov/codecov-action@v1
43+
with:
44+
token: ${{ secrets.CODECOV_TOKEN }}
45+
file: ./coverage.xml

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
## 0.1 series
44

5+
6+
### 0.1.8
7+
8+
Library:
9+
10+
* Use ``core.is_empty`` to check for empty values (#434)
11+
* Move tests to python 3.8 (#435)
12+
* Update to libcombine 0.2.6 (#437)
13+
* Make float parsing from CSV round-trip (#444)
14+
* Lint: Allow model time in observable formulas (#445)
15+
* Lint: Detect duplicated observable ids (#446)
16+
* Fix likelihood calculation with missing values (#451)
17+
18+
Documentation:
19+
20+
* Move format documentation to restructuredtext format (#452)
21+
* Document all noise distributions and observable scales (#452)
22+
* Fix documentation for prior distribution (#449)
23+
24+
Visualization:
25+
26+
* Make XValue column non-mandatory (#429)
27+
* Apply correct condition sorting (#430)
28+
* Apply correct default x label (#431)
29+
30+
531
### 0.1.7
632

733
Documentation:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Legend:
105105
## Using PEtab
106106

107107
If you would like to use PEtab yourself, please have a look at
108-
[doc/documentation_data_format.md](doc/documentation_data_format.md) or at
108+
[doc/documentation_data_format.rst](doc/documentation_data_format.rst) or at
109109
the example models provided in the
110110
[benchmark collection](https://github.com/Benchmarking-Initiative/Benchmark-Models-PEtab).
111111

0 commit comments

Comments
 (0)