From 9a8a633d4d82c6eb6b7349b7385e7ca1cb4e20d5 Mon Sep 17 00:00:00 2001 From: Chris Fonnesbeck Date: Tue, 6 Sep 2016 12:25:40 -0500 Subject: [PATCH 1/4] Incremented version to 3.0.rc1 --- 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 a6d1903a0ba..943de814e22 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -72,7 +72,7 @@ # The short X.Y version. version = '3.0' # The full version, including alpha/beta/rc tags. -release = '3.0' +release = '3.0.rc1' # 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 dc9ea93bdb9..524317b5bb3 100644 --- a/pymc3/__init__.py +++ b/pymc3/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0" +__version__ = "3.0.rc1" from .blocking import * from .distributions import * diff --git a/setup.py b/setup.py index acfe76eb423..80203391987 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ AUTHOR_EMAIL = 'chris.fonnesbeck@vanderbilt.edu' URL = "http://github.com/pymc-devs/pymc" LICENSE = "Apache License, Version 2.0" -VERSION = "3.0" +VERSION = "3.0.rc1" classifiers = ['Development Status :: 4 - Beta', 'Programming Language :: Python', From 3f045dd5d8a869dbddc7bcd9ac1bda3f70e89e43 Mon Sep 17 00:00:00 2001 From: Chris Fonnesbeck Date: Tue, 6 Sep 2016 12:30:04 -0500 Subject: [PATCH 2/4] Updated classifiers in setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 80203391987..f7daa0d5eea 100755 --- a/setup.py +++ b/setup.py @@ -14,12 +14,13 @@ LICENSE = "Apache License, Version 2.0" VERSION = "3.0.rc1" -classifiers = ['Development Status :: 4 - Beta', +classifiers = ['Development Status :: 5 - Production/Stable', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'License :: OSI Approved :: Apache Software License', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering', From cc5a7b4fa34289bed31849cdd826d842f1026650 Mon Sep 17 00:00:00 2001 From: Chris Fonnesbeck Date: Tue, 6 Sep 2016 12:31:48 -0500 Subject: [PATCH 3/4] Updated maintainer and author details --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f7daa0d5eea..bd278974376 100755 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ DISTNAME = 'pymc3' DESCRIPTION = "PyMC3" LONG_DESCRIPTION = """Bayesian estimation, particularly using Markov chain Monte Carlo (MCMC), is an increasingly relevant approach to statistical estimation. However, few statistical software packages implement MCMC samplers, and they are non-trivial to code by hand. ``pymc3`` is a python package that implements the Metropolis-Hastings algorithm as a python class, and is extremely flexible and applicable to a large suite of problems. ``pymc3`` includes methods for summarizing output, plotting, goodness-of-fit and convergence diagnostics.""" -MAINTAINER = 'John Salvatier' -MAINTAINER_EMAIL = 'jsalvati@u.washington.edu' -AUTHOR = 'John Salvatier and Christopher Fonnesbeck' +MAINTAINER = 'Thomas Wiecki' +MAINTAINER_EMAIL = 'thomas.wiecki@gmail.com' +AUTHOR = 'Christopher Fonnesbeck' AUTHOR_EMAIL = 'chris.fonnesbeck@vanderbilt.edu' URL = "http://github.com/pymc-devs/pymc" LICENSE = "Apache License, Version 2.0" From c463881b0dc96f249ab4b93706164ed1dc503836 Mon Sep 17 00:00:00 2001 From: Chris Fonnesbeck Date: Tue, 6 Sep 2016 12:34:15 -0500 Subject: [PATCH 4/4] Added John back in author list --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bd278974376..de2ffb7ec98 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ LONG_DESCRIPTION = """Bayesian estimation, particularly using Markov chain Monte Carlo (MCMC), is an increasingly relevant approach to statistical estimation. However, few statistical software packages implement MCMC samplers, and they are non-trivial to code by hand. ``pymc3`` is a python package that implements the Metropolis-Hastings algorithm as a python class, and is extremely flexible and applicable to a large suite of problems. ``pymc3`` includes methods for summarizing output, plotting, goodness-of-fit and convergence diagnostics.""" MAINTAINER = 'Thomas Wiecki' MAINTAINER_EMAIL = 'thomas.wiecki@gmail.com' -AUTHOR = 'Christopher Fonnesbeck' +AUTHOR = 'John Salvatier and Christopher Fonnesbeck' AUTHOR_EMAIL = 'chris.fonnesbeck@vanderbilt.edu' URL = "http://github.com/pymc-devs/pymc" LICENSE = "Apache License, Version 2.0"