Skip to content

Commit fb01894

Browse files
authored
Merge pull request #2624 from pymc-devs/3.2release
3.2 Release
2 parents 55da81d + 394296b commit fb01894

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

RELEASE-NOTES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Release Notes
22

3-
## PyMC3 3.2 (October 2, 2017)
3+
## PyMC3 3.2 (October 10, 2017)
44

55
### New features
66

77
This version includes two major contributions from our Google Summer of Code 2017 students:
88

9-
* Maxim Kucherov extended and refactored the variational inference module. This primarily adds two important classes, representing operator variational inference (`OPVI`) objects and `Approximation` objects. These make it easier to extend existing `variational` classes, and to derive inference from `variational` optimizations, respectively. The `variational` module now also includes normalizing flows (`NFVI`).
9+
* Maxim Kochurov extended and refactored the variational inference module. This primarily adds two important classes, representing operator variational inference (`OPVI`) objects and `Approximation` objects. These make it easier to extend existing `variational` classes, and to derive inference from `variational` optimizations, respectively. The `variational` module now also includes normalizing flows (`NFVI`).
1010
* Bill Engels added an extensive new Gaussian processes (`gp`) module. Standard GPs can be specified using either `Latent` or `Marginal` classes, depending on the nature of the underlying function. A Student-T process `TP` has been added. In order to accomodate larger datasets, approximate marginal Gaussian processes (`MarginalSparse`) have been added.
1111

1212
Documentation has been improved as the result of the project's monthly "docathons".
@@ -45,6 +45,8 @@ Parts of the test suite have been refactored.
4545

4646
### Fixes
4747

48+
Fixed sampler stats error in NUTS for non-RAM backends
49+
4850
Matplotlib is no longer a hard dependency, making it easier to use in settings where installing Matplotlib is problematic. PyMC will only complain if plotting is attempted.
4951

5052
Several bugs in the Gaussian process covariance were fixed.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
# The short X.Y version.
8181
version = '3.2'
8282
# The full version, including alpha/beta/rc tags.
83-
release = '3.2rc1'
83+
release = '3.2'
8484

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

pymc3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pylint: disable=wildcard-import
2-
__version__ = "3.2rc1"
2+
__version__ = "3.2"
33

44
from .blocking import *
55
from .distributions import *

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
AUTHOR_EMAIL = '[email protected]'
1414
URL = "http://github.com/pymc-devs/pymc3"
1515
LICENSE = "Apache License, Version 2.0"
16-
VERSION = "3.2rc1"
16+
VERSION = "3.2"
1717

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

0 commit comments

Comments
 (0)