Skip to content

Commit

Permalink
About to release v0.11.17
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Oct 17, 2018
1 parent 452656a commit 59a27b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.11.17
========
- Support for constraints in pycvodes when using sundials >=3.2

v0.11.16
========
- Fix CSE in native code-generation
Expand Down
4 changes: 2 additions & 2 deletions pyodesys/native/tests/test_cvode.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ def test_render_native_cse_regression():
except Exception: # ModuleNotFoundError in newer versions of python
sundials_version = (0, 0, 0)


@pytest.mark.slow
@requires('sym', 'pycvodes')
@pytest.mark.skipif(sundials_version[:2] < (3,2), reason="constraints req. sundials >=3.2")
@pytest.mark.skipif(sundials_version[:2] < (3, 2), reason="constraints req. sundials >=3.2")
def test_constraints():
_test_multiple_predefined(NativeSys, atol=1e-10, rtol=1e-10, constraints=[1.0, 1.0])

0 comments on commit 59a27b4

Please sign in to comment.