Skip to content

Commit

Permalink
Bumped version to 0.5.2. Also require pymc 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Nov 12, 2013
1 parent 7632766 commit 6b017a6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -7,7 +7,7 @@ Introduction
:Web site: http://github.com/hddm-dev/kabuki
:Copyright: This document has been placed in the public domain.
:License: Simplified BSD (see LICENSE)
:Version: 0.5.2.beta
:Version: 0.5.2

Purpose
=======
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.1.dev'
version = '0.5.2'
# The full version, including alpha/beta/rc tags.
release = '0.5.1.dev'
release = '0.5.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion kabuki/__init__.py
Expand Up @@ -5,7 +5,7 @@
import step_methods as steps
import generate

__version__ = '0.5.2.beta.dev'
__version__ = '0.5.2'

try:
from IPython.core.debugger import Tracer; debug_here = Tracer()
Expand Down
6 changes: 3 additions & 3 deletions meta.yaml
@@ -1,10 +1,10 @@
package:
name: kabuki # lower case name of package, may contain '-' but no spaces
version: 0.5.1.dev # version of package
version: 0.5.2 # version of package

source:
git_url: git@github.com:hddm-devs/kabuki.git
git_tag: develop
git_tag: master

# the build and runtime requirements:
requirements: # (optional)
Expand Down Expand Up @@ -32,4 +32,4 @@ test: # (optional)

about: # (optional)
home: https://github.com/hddm-devs/kabuki
license: BSD
license: BSD
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -2,12 +2,12 @@

setup(
name="kabuki",
version="0.5.2.beta",
version="0.5.2",
author="Thomas V. Wiecki, Imri Sofer",
author_email="thomas.wiecki@gmail.com",
url="http://github.com/hddm-devs/kabuki",
packages=["kabuki"],
description="kabuki is a python toolbox that allows easy creation of hierarchical bayesian models for the cognitive sciences.",
install_requires=['NumPy >= 1.6.0', 'PyMC >= 2.2', 'pandas >= 0.10.0', 'matplotlib >= 1.0.0'],
setup_requires=['NumPy >= 1.6.0', 'PyMC >= 2.2', 'pandas >= 0.10.0', 'matplotlib >= 1.0.0']
install_requires=['NumPy >= 1.6.0', 'PyMC == 2.3', 'pandas >= 0.10.0', 'matplotlib >= 1.0.0'],
setup_requires=['NumPy >= 1.6.0', 'PyMC == 2.3', 'pandas >= 0.10.0', 'matplotlib >= 1.0.0']
)

0 comments on commit 6b017a6

Please sign in to comment.