Skip to content

Commit

Permalink
Prepare for v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Dec 19, 2017
1 parent 328154c commit 6c3a334
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.9.1
======
- variable tidx exposed in simple_adaptive

v0.9.0
======
- adaptive integration now reallocs its own space (allows direct transfer of ownership to e.g. numpy arrays)
Expand Down
3 changes: 1 addition & 2 deletions conda-recipe/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/bin/bash
sed -i -E -e 's/lapack/openblas/' pycvodes/_config.py
PYCVODES_LAPACK=openblas CPLUS_INCLUDE_PATH=${PREFIX}/include ${PYTHON} setup.py build
${PYTHON} setup.py install --single-version-externally-managed --record record.txt
PYCVODES_LAPACK=openblas CPLUS_INCLUDE_PATH=${PREFIX}/include ${PYTHON} -m pip install --no-deps --ignore-installed .
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pycvodes" %}
{% set version = "0.8.0+git" %}
{% set version = "0.10.0+git" %}
{% set variant = "openblas" %}

package:
Expand Down
2 changes: 1 addition & 1 deletion pycvodes/_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
env = {
'LAPACK': 'openblas',
'LAPACK': 'lapack',
'SUNDIALS_LIBS': 'sundials_cvodes,sundials_nvecserial,m',
}
2 changes: 1 addition & 1 deletion pycvodes/_release.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.9.0+git'
__version__ = '0.10.0+git'

0 comments on commit 6c3a334

Please sign in to comment.