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

Commit e25af25

Browse files
authored
Merge pull request #356 from ariddell/feature/release-2.16.0
Release PyStan 2.16.0.0
2 parents 8fe9cca + 5486330 commit e25af25

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

doc/getting_started.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ dependencies, then issue the commands:
4343

4444
::
4545

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

doc/whats_new.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@
66
What's New
77
============
88

9+
v2.16.0.0 (22. June 2017)
10+
========================
11+
- Update Stan source to v2.16.0 (`release notes <https://github.com/stan-dev/stan/releases/tag/v2.16.0>`_),
12+
- Ari Hartikainen (Aalto University) @ahartikainen joins the Stan development team. 🎉
13+
- Added ``pystan.lookup`` (contributed by Marco Inacio, @randommm)
14+
- NOTE: Stan v2.16.0 is the final release which will not require a C++11 compatible compiler. Future
15+
releases will require a C+11 compatible compiler. The vast majority of users have a compatible
16+
compiler.
17+
918
v2.15.0.1 (2. May 2017)
1019
========================
1120
- Python 2.7 compatibility fix (#332). Thanks to @monga for the report.

pystan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
logging.basicConfig(level=logging.INFO)
1818

1919
# following PEP 386
20-
__version__ = '2.15.0.2dev'
20+
__version__ = '2.16.0.0'

0 commit comments

Comments
 (0)