Skip to content

Commit

Permalink
bump version to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Dec 15, 2014
1 parent ad5df03 commit b588353
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: datashape
version: "0.4.1"
version: "0.4.2"

build:
number: {{environ.get('BINSTAR_BUILD', 1)}}
Expand Down
2 changes: 1 addition & 1 deletion datashape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .error import (DataShapeSyntaxError, OverloadError, UnificationError,
CoercionError)

__version__ = '0.4.1'
__version__ = '0.4.2'

def test(verbose=False, xunitfile=None, exit=False):
"""
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(fname):

setup(
name = "DataShape",
version = "0.4.1",
version = "0.4.2",
author = "Continuum Analytics",
author_email = "[email protected]",
description = ("A data description language."),
Expand All @@ -19,7 +19,7 @@ def read(fname):
url = "http://packages.python.org/datashape",
packages = ["datashape",
"datashape.tests"],
install_requires=open('requirements.txt').read().split('\n'),
install_requires=open('requirements.txt').read().strip().split('\n'),
long_description = read('README.rst'),
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit b588353

Please sign in to comment.