Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Release PyStan 2.16.0.0
Browse files Browse the repository at this point in the history
Follows steps described in ``doc/release-howto.rst``.

Closes #353
  • Loading branch information
ariddell committed Jun 22, 2017
1 parent 8fe9cca commit 5486330
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
6 changes: 3 additions & 3 deletions doc/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ dependencies, then issue the commands:

::

wget https://pypi.python.org/packages/source/p/pystan/pystan-2.15.0.1.tar.gz
wget https://pypi.python.org/packages/source/p/pystan/pystan-2.16.0.0.tar.gz
# alternatively, use curl, or a web browser
tar zxvf pystan-2.15.0.1.tar.gz
cd pystan-2.15.0.1
tar zxvf pystan-2.16.0.0.tar.gz
cd pystan-2.16.0.0
python setup.py install
cd .. # change out of the source directory before importing pystan

Expand Down
9 changes: 9 additions & 0 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@
What's New
============

v2.16.0.0 (22. June 2017)
========================
- Update Stan source to v2.16.0 (`release notes <https://github.com/stan-dev/stan/releases/tag/v2.16.0>`_),
- Ari Hartikainen (Aalto University) @ahartikainen joins the Stan development team. 🎉
- Added ``pystan.lookup`` (contributed by Marco Inacio, @randommm)
- NOTE: Stan v2.16.0 is the final release which will not require a C++11 compatible compiler. Future
releases will require a C+11 compatible compiler. The vast majority of users have a compatible
compiler.

v2.15.0.1 (2. May 2017)
========================
- Python 2.7 compatibility fix (#332). Thanks to @monga for the report.
Expand Down
2 changes: 1 addition & 1 deletion pystan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
logging.basicConfig(level=logging.INFO)

# following PEP 386
__version__ = '2.15.0.2dev'
__version__ = '2.16.0.0'

0 comments on commit 5486330

Please sign in to comment.