Skip to content

Commit

Permalink
Release 0.11.26
Browse files Browse the repository at this point in the history
Merge pull request #1698 from AMICI-dev/release_0.11.26
  • Loading branch information
dweindl authored Mar 15, 2022
2 parents 067826d + 52b7ab5 commit f02dde9
Show file tree
Hide file tree
Showing 140 changed files with 4,124 additions and 12,838 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ jobs:
- name: homebrew
run: |
if [[ ${{ matrix.os }} == macos* ]] ; then \
brew install hdf5 swig gcc libomp
brew install [email protected] swig gcc libomp \
&& echo "/usr/local/opt/[email protected]/bin" >> $GITHUB_PATH \
&& echo LDFLAGS="-L/usr/local/lib/ -L/usr/local/opt/[email protected]/lib" >> $GITHUB_ENV \
&& echo CPPFLAGS="-I/usr/local/opt/[email protected]/include" >> $GITHUB_ENV \
&& echo HDF5_BASE="/usr/local/opt/[email protected]/" >> $GITHUB_ENV
fi
- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test_python_cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,13 @@ jobs:
# install amici dependencies
- name: homebrew
run: |
brew install hdf5 swig gcc cppcheck libomp boost
brew install [email protected] swig gcc cppcheck libomp boost \
&& brew ls -v boost \
&& brew ls -v libomp \
&& echo "/usr/local/opt/[email protected]/bin" >> $GITHUB_PATH \
&& echo LDFLAGS="-L/usr/local/lib/ -L/usr/local/opt/[email protected]/lib -L/usr/local/Cellar/boost/1.78.0_1/lib/" >> $GITHUB_ENV \
&& echo CPPFLAGS="-I/usr/local/opt/[email protected]/include -I/usr/local/Cellar/boost/1.78.0_1/include/" >> $GITHUB_ENV \
&& echo HDF5_BASE="/usr/local/opt/[email protected]/" >> $GITHUB_ENV
- name: Build AMICI
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test_valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:

jobs:
build:
valgrind:
name: Tests Valgrind

# TODO: prepare image with more deps preinstalled
Expand All @@ -20,6 +20,9 @@ jobs:
matrix:
python-version: [ 3.8 ]

env:
ENABLE_AMICI_DEBUGGING: "TRUE"

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ tests/test/*
*/tests/fricker_2010_apoptosis_amici/*
*/tests/explicit_amici/*
*/tests/fixed_initial_amici/*
*/tests/localfunc_amici/*
tests/cpp/writeResults.h5
tests/cpp/writeResults.h5.bak
tests/sbml-test-suite/*
Expand Down Expand Up @@ -191,6 +192,6 @@ tests/performance/CS_Signalling_ERBB_RAS_AKT/
tests/performance/CS_Signalling_ERBB_RAS_AKT_petab/*
coverage_SBMLSuite.xml
Benchmark-Models-PEtab/

/test_bmc/

CS_Signalling_ERBB_RAS_AKT/
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,37 @@

## v0.X Series

### v0.11.26 (2022-03-14)

New features:
* Import of BioNetGenLanguage (BNGL) models by @FFroehlich in
https://github.com/AMICI-dev/AMICI/pull/1709
* Added support for observable-dependent sigmas by @dweindl, @FFroehlich in
https://github.com/AMICI-dev/AMICI/pull/1692
* Added support for pysb local functions by @FFroehlich in
https://github.com/AMICI-dev/AMICI/pull/1666
* Added experimental support for conservation laws for non-constant species to
SBML import: conservation laws for non-constant species
by @stephanmg, @dweindl in https://github.com/AMICI-dev/AMICI/pull/1669
Enable this feature by setting environment variable
`AMICI_EXPERIMENTAL_SBML_NONCONST_CLS` to any value
* Allow using states eliminated by conservation laws to be used in root
functions by @dweindl in https://github.com/AMICI-dev/AMICI/pull/1677
* Added support for parameter-dependent conservation laws by @dweindl,
@FFroehlich in https://github.com/AMICI-dev/AMICI/pull/1678
* Added optional caching for symbolic simplifications in ODE export by @dilpath
in https://github.com/AMICI-dev/AMICI/pull/1672
* Added CLI option `--no-sensitivities` to `amici_import_petab` by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1688

Fixes:
* SBML import: Raise in case of nested observables by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1690
* Sympy 1.10 compatibility by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1694

**Full Changelog**: https://github.com/AMICI-dev/AMICI/compare/v0.11.25...v0.11.26

### v0.11.25 (2022-02-09)

* Fixed a bug
Expand Down
106 changes: 0 additions & 106 deletions ThirdParty/sundials/cmake/SundialsSetupCuda.cmake

This file was deleted.

Loading

0 comments on commit f02dde9

Please sign in to comment.