Skip to content

Commit

Permalink
About to release v0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Aug 14, 2018
1 parent 9dea4b9 commit 7a5c4c7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Bjoern I. Dahlgren <bjodah@gmail.com>
Sean P. Cornelius <spcornelius@gmail.com>
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
v0.12.3
=======
- Support for sparse jacobians. Implementation by @spcornelius

v0.12.2
=======
- cvodes code now support multiple precisions (sundials may be compiled with float, double or long double)
- cvodes code now support multiple precisions (sundials may be compiled with float, double or long double). Implementation by @spcornelius

v0.12.1
=======
Expand Down
5 changes: 5 additions & 0 deletions pyodesys/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@
import inspect
import math
import operator
import sys

from pkg_resources import parse_requirements, parse_version

import numpy as np
import pytest

if sys.version_info < (3, 6, 0):
class ModuleNotFoundError(ImportError):
pass


def stack_1d_on_left(x, y):
""" Stack a 1D array on the left side of a 2D array
Expand Down

0 comments on commit 7a5c4c7

Please # to comment.