Skip to content

Commit 90a3fbf

Browse files
Chris Fonnesbeckspringcoil
Chris Fonnesbeck
authored andcommitted
Incremented version to 3.0.rc1 (#1334)
* Incremented version to 3.0.rc1 * Updated classifiers in setup.py * Updated maintainer and author details * Added John back in author list
1 parent a29f7f1 commit 90a3fbf

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

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'
75+
release = '3.0.rc1'
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"
1+
__version__ = "3.0.rc1"
22

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

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,21 @@
66
DISTNAME = 'pymc3'
77
DESCRIPTION = "PyMC3"
88
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."""
9-
MAINTAINER = 'John Salvatier'
10-
MAINTAINER_EMAIL = '[email protected]'
9+
MAINTAINER = 'Thomas Wiecki'
10+
MAINTAINER_EMAIL = '[email protected]'
1111
AUTHOR = 'John Salvatier and Christopher Fonnesbeck'
1212
AUTHOR_EMAIL = '[email protected]'
1313
URL = "http://github.com/pymc-devs/pymc"
1414
LICENSE = "Apache License, Version 2.0"
15-
VERSION = "3.0"
15+
VERSION = "3.0.rc1"
1616

17-
classifiers = ['Development Status :: 4 - Beta',
17+
classifiers = ['Development Status :: 5 - Production/Stable',
1818
'Programming Language :: Python',
1919
'Programming Language :: Python :: 2',
2020
'Programming Language :: Python :: 3',
2121
'Programming Language :: Python :: 2.7',
22-
'Programming Language :: Python :: 3.3',
22+
'Programming Language :: Python :: 3.4',
23+
'Programming Language :: Python :: 3.5',
2324
'License :: OSI Approved :: Apache Software License',
2425
'Intended Audience :: Science/Research',
2526
'Topic :: Scientific/Engineering',

0 commit comments

Comments
 (0)