Skip to content

Commit

Permalink
About to release v0.7.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Jul 5, 2020
1 parent c03a0d2 commit 62fc2a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.7.12
=======
- Update some heavy elements Uuo -> Og, etc.
- Fix PuLP warning in solve stoichiometry

v0.7.11
=======
- Support for newer version of PuLP when running test suite.
Expand Down
Binary file modified examples/kinetics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#
# $ ./scripts/release.sh v1.2.3 GITHUB_USER GITHUB_REPO
#
# or, using some host specific settings:
#
# $ export PYODESYS_CVODE_FLAGS=-isystem /opt/sundials-5.3.0-rel-klu-lapack/include -isystem /usr/include/suitesparse PYODESYS_CVODE_LDFLAGS=-Wl,--disable-new-dtags -Wl,-rpath,/opt/sundials-5.3.0-rel-klu-lapack/lib:/opt/openblas-0.3.9/lib -L/opt/sundials-5.3.0-rel-klu-lapack/lib -L/opt/openblas-0.3.9/lib -lopenblas
# $ ./scripts/release.sh ...

if [[ $1 != v* ]]; then
echo "Argument does not start with 'v'"
Expand All @@ -20,7 +24,7 @@ PKG=$(find . -maxdepth 2 -name __init__.py -print0 | xargs -0 -n1 dirname | xarg
! grep --include "*.py" "will_be_missing_in='$VERSION'" -R $PKG/ # see deprecation()
PKG_UPPER=$(echo $PKG | tr '[:lower:]' '[:upper:]')
./scripts/run_tests.sh
env ${PKG_UPPER}_RELEASE_VERSION=v$VERSION python setup.py sdist
env ${PKG_UPPER}_RELEASE_VERSION=v$VERSION python3 setup.py sdist
env ${PKG_UPPER}_RELEASE_VERSION=v$VERSION ./scripts/generate_docs.sh

# All went well, add a tag and push it.
Expand Down

0 comments on commit 62fc2a2

Please sign in to comment.