Skip to content

Commit 40ccb10

Browse files
authored
Merge pull request #1647 from pymc-devs/v3.0_release
REL Update version to 3.0.
2 parents 69b9461 + 5b6bb33 commit 40ccb10

File tree

4 files changed

+21
-20
lines changed

4 files changed

+21
-20
lines changed

RELEASE-NOTES.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Release Notes
2-
## PyMC3 3.0 (September xx, 2016)
2+
## PyMC3 3.0 (January 9, 2017)
33

44
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.
55

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

4848
### Contributors
4949

50+
The following authors contributed to this release:
51+
52+
Chris Fonnesbeck <[email protected]>
53+
John Salvatier <[email protected]>
54+
Thomas Wiecki <[email protected]>
55+
Colin Carroll <[email protected]>
56+
Maxim Kochurov <[email protected]>
57+
Taku Yoshioka <[email protected]>
58+
Peadar Coyle (springcoil) <[email protected]>
59+
Austin Rochford <[email protected]>
60+
Osvaldo Martin <[email protected]>
61+
62+
In addition, the following community members contributed to this release:
63+
5064
5165
A. Flaxman <[email protected]>
5266
Abraham Flaxman <[email protected]>
@@ -57,17 +71,13 @@ Andreas Klostermann <[email protected]>
5771
Andres Asensio Ramos
5872
Andrew Clegg <[email protected]>
5973
Anjum48
60-
AustinRochford <[email protected]>
6174
Benjamin Edwards <[email protected]>
6275
Boris Avdeev <[email protected]>
6376
Brian Naughton <[email protected]>
6477
Byron Smith
6578
Chad Heyne <[email protected]>
66-
Chris Fonnesbeck <[email protected]>
67-
Colin
6879
Corey Farwell <[email protected]>
6980
David Huard <[email protected]>
70-
David Huard <[email protected]>
7181
David Stück <[email protected]>
7282
DeliciousHair <[email protected]>
7383
Dustin Tran
@@ -80,7 +90,7 @@ Imri Sofer <[email protected]>
8090
Jake Biesinger <[email protected]>
8191
James Webber <[email protected]>
8292
John McDonnell <[email protected]>
83-
John Salvatier <[email protected]>
93+
Jon Sedar <[email protected]>
8494
Jordi Diaz
8595
Jordi Warmenhoven <[email protected]>
8696
Karlson Pfannschmidt <[email protected]>
@@ -89,33 +99,25 @@ Kyle Meyer <[email protected]>
8999
Lin Xiao
90100
Mack Sweeney <[email protected]>
91101
Matthew Emmett <[email protected]>
92-
Maxim
93102
Michael Gallaspy <[email protected]>
94103
95104
Osvaldo Martin <[email protected]>
96105
Patricio Benavente <[email protected]>
97-
Peadar Coyle (springcoil) <[email protected]>
98106
Raymond Roberts
99107
Rodrigo Benenson <[email protected]>
100108
Sergei Lebedev <[email protected]>
101109
Skipper Seabold <[email protected]>
102-
Taku Yoshioka <[email protected]>
103-
The Gitter Badger <[email protected]>
104110
Thomas Kluyver <[email protected]>
105-
Thomas Wiecki <[email protected]>
106111
Tobias Knuth <[email protected]>
107-
Volodymyr
108112
Volodymyr Kazantsev
109113
Wes McKinney <[email protected]>
110114
Zach Ploskey <[email protected]>
111115
112-
aloctavodia <[email protected]>
113116
brandon willard <[email protected]>
114117
115118
ingmarschuster <[email protected]>
116119
jan-matthis <[email protected]>
117120
jason <JasonTam22@gmailcom>
118-
119121
120122
121123
@@ -126,8 +128,7 @@ redst4r <[email protected]>
126128
127129
128130
stonebig <stonebig>
129-
130-
131+
Tal Yarkoni <[email protected]>
131132
132133
133134

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
# The short X.Y version.
7373
version = '3.0'
7474
# The full version, including alpha/beta/rc tags.
75-
release = '3.0.rc6'
75+
release = '3.0'
7676

7777
# The language for content autogenerated by Sphinx. Refer to documentation
7878
# for a list of supported languages.

pymc3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.rc6"
1+
__version__ = "3.0"
22

33
from .blocking import *
44
from .distributions import *

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
MAINTAINER_EMAIL = '[email protected]'
1111
AUTHOR = 'John Salvatier and Christopher Fonnesbeck'
1212
AUTHOR_EMAIL = '[email protected]'
13-
URL = "http://github.com/pymc-devs/pymc"
13+
URL = "http://github.com/pymc-devs/pymc3"
1414
LICENSE = "Apache License, Version 2.0"
15-
VERSION = "3.0.rc6"
15+
VERSION = "3.0"
1616

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

0 commit comments

Comments
 (0)