Skip to content

Commit

Permalink
Merge pull request #1647 from pymc-devs/v3.0_release
Browse files Browse the repository at this point in the history
REL Update version to 3.0.
  • Loading branch information
fonnesbeck authored Jan 9, 2017
2 parents 69b9461 + 5b6bb33 commit 40ccb10
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
33 changes: 17 additions & 16 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Release Notes
## PyMC3 3.0 (September xx, 2016)
## PyMC3 3.0 (January 9, 2017)

We are proud and excited to release the first stable version of PyMC3, the product of more than [5 years](https://github.com/pymc-devs/pymc3/commit/85c7e06b6771c0d99cbc09cb68885cda8f7785cb) of ongoing development and contributions from over 80 individuals. PyMC3 is a Python module for Bayesian modeling which focuses on modern Bayesian computational methods, primarily gradient-based (Hamiltonian) MCMC sampling and variational inference. Models are specified in Python, which allows for great flexibility. The main technological difference in PyMC3 relative to previous versions is the reliance on Theano for the computational backend, rather than on Fortran extensions.

Expand Down Expand Up @@ -47,6 +47,20 @@ We on the PyMC3 core team would like to thank everyone for contributing and now

### Contributors

The following authors contributed to this release:

Chris Fonnesbeck <[email protected]>
John Salvatier <[email protected]>
Thomas Wiecki <[email protected]>
Colin Carroll <[email protected]>
Maxim Kochurov <[email protected]>
Taku Yoshioka <[email protected]>
Peadar Coyle (springcoil) <[email protected]>
Austin Rochford <[email protected]>
Osvaldo Martin <[email protected]>

In addition, the following community members contributed to this release:

A Kuz <[email protected]>
A. Flaxman <[email protected]>
Abraham Flaxman <[email protected]>
Expand All @@ -57,17 +71,13 @@ Andreas Klostermann <[email protected]>
Andres Asensio Ramos
Andrew Clegg <[email protected]>
Anjum48
AustinRochford <[email protected]>
Benjamin Edwards <[email protected]>
Boris Avdeev <[email protected]>
Brian Naughton <[email protected]>
Byron Smith
Chad Heyne <[email protected]>
Chris Fonnesbeck <[email protected]>
Colin
Corey Farwell <[email protected]>
David Huard <[email protected]>
David Huard <[email protected]>
David Stück <[email protected]>
DeliciousHair <[email protected]>
Dustin Tran
Expand All @@ -80,7 +90,7 @@ Imri Sofer <[email protected]>
Jake Biesinger <[email protected]>
James Webber <[email protected]>
John McDonnell <[email protected]>
John Salvatier <[email protected]>
Jon Sedar <[email protected]>
Jordi Diaz
Jordi Warmenhoven <[email protected]>
Karlson Pfannschmidt <[email protected]>
Expand All @@ -89,33 +99,25 @@ Kyle Meyer <[email protected]>
Lin Xiao
Mack Sweeney <[email protected]>
Matthew Emmett <[email protected]>
Maxim
Michael Gallaspy <[email protected]>
Nick <[email protected]>
Osvaldo Martin <[email protected]>
Patricio Benavente <[email protected]>
Peadar Coyle (springcoil) <[email protected]>
Raymond Roberts
Rodrigo Benenson <[email protected]>
Sergei Lebedev <[email protected]>
Skipper Seabold <[email protected]>
Taku Yoshioka <[email protected]>
The Gitter Badger <[email protected]>
Thomas Kluyver <[email protected]>
Thomas Wiecki <[email protected]>
Tobias Knuth <[email protected]>
Volodymyr
Volodymyr Kazantsev
Wes McKinney <[email protected]>
Zach Ploskey <[email protected]>
akuz <[email protected]>
aloctavodia <[email protected]>
brandon willard <[email protected]>
dstuck <[email protected]>
ingmarschuster <[email protected]>
jan-matthis <[email protected]>
jason <JasonTam22@gmailcom>
jonsedar <[email protected]>
kiudee <[email protected]>
maahnman <[email protected]>
macgyver <[email protected]>
Expand All @@ -126,8 +128,7 @@ redst4r <[email protected]>
santon <[email protected]>
sgenoud <[email protected]>
stonebig <stonebig>
taku-y <[email protected]>
tyarkoni <[email protected]>
Tal Yarkoni <[email protected]>
x2apps <[email protected]>
zenourn <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
# The short X.Y version.
version = '3.0'
# The full version, including alpha/beta/rc tags.
release = '3.0.rc6'
release = '3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pymc3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0.rc6"
__version__ = "3.0"

from .blocking import *
from .distributions import *
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
MAINTAINER_EMAIL = '[email protected]'
AUTHOR = 'John Salvatier and Christopher Fonnesbeck'
AUTHOR_EMAIL = '[email protected]'
URL = "http://github.com/pymc-devs/pymc"
URL = "http://github.com/pymc-devs/pymc3"
LICENSE = "Apache License, Version 2.0"
VERSION = "3.0.rc6"
VERSION = "3.0"

classifiers = ['Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
Expand Down

0 comments on commit 40ccb10

Please sign in to comment.