From 394296b27d9b9cde09361c72610358a07e505d9a Mon Sep 17 00:00:00 2001 From: Christopher Fonnesbeck Date: Tue, 10 Oct 2017 10:43:17 -0500 Subject: [PATCH] Increment version number to release --- docs/source/conf.py | 2 +- pymc3/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index b2747d90a2e..425619816c2 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -80,7 +80,7 @@ # The short X.Y version. version = '3.2' # The full version, including alpha/beta/rc tags. -release = '3.2rc1' +release = '3.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pymc3/__init__.py b/pymc3/__init__.py index c2d5522d0cd..f26cd0e0aaf 100644 --- a/pymc3/__init__.py +++ b/pymc3/__init__.py @@ -1,5 +1,5 @@ # pylint: disable=wildcard-import -__version__ = "3.2rc1" +__version__ = "3.2" from .blocking import * from .distributions import * diff --git a/setup.py b/setup.py index 823ad89c9a1..582214b207c 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ AUTHOR_EMAIL = 'chris.fonnesbeck@vanderbilt.edu' URL = "http://github.com/pymc-devs/pymc3" LICENSE = "Apache License, Version 2.0" -VERSION = "3.2rc1" +VERSION = "3.2" classifiers = ['Development Status :: 5 - Production/Stable', 'Programming Language :: Python',