From 8b8f44d3aca55da6f77355bef4fcbea3842afe38 Mon Sep 17 00:00:00 2001 From: Christopher Fonnesbeck Date: Wed, 24 Jan 2018 16:01:21 -0600 Subject: [PATCH] Increment version to 3.3 --- 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 97a26753c7a..147434e4a6f 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -81,7 +81,7 @@ # The short X.Y version. version = '3.3' # The full version, including alpha/beta/rc tags. -release = '3.3rc2' +release = '3.3' # 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 7c414aed3d2..b8297f073e9 100644 --- a/pymc3/__init__.py +++ b/pymc3/__init__.py @@ -1,5 +1,5 @@ # pylint: disable=wildcard-import -__version__ = "3.3rc2" +__version__ = "3.3" from .blocking import * from .distributions import * diff --git a/setup.py b/setup.py index 2e93a2f144e..aa23f5c3790 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ AUTHOR_EMAIL = 'pymc.devs@gmail.com' URL = "http://github.com/pymc-devs/pymc3" LICENSE = "Apache License, Version 2.0" -VERSION = "3.3rc2" +VERSION = "3.3" classifiers = ['Development Status :: 5 - Production/Stable', 'Programming Language :: Python',