Skip to content

Commit

Permalink
Updated version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Apr 14, 2015
1 parent a45059c commit 1459880
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion numbergen/__init__.py
Expand Up @@ -14,7 +14,7 @@


from param.version import Version
__version__ = Version(release=(1,3,1), fpath=__file__,
__version__ = Version(release=(1,3,2), fpath=__file__,
commit="$Format:%h$", reponame="param")


Expand Down
4 changes: 2 additions & 2 deletions param/__init__.py
Expand Up @@ -29,10 +29,10 @@
# only two required files.
try:
from .version import Version
__version__ = Version(release=(1,3,1), fpath=__file__,
__version__ = Version(release=(1,3,2), fpath=__file__,
commit="$Format:%h$", reponame="param")
except:
__version__ = '1.3.1-unknown'
__version__ = '1.3.2-unknown'


#: Top-level object to allow messaging not tied to a particular
Expand Down
7 changes: 4 additions & 3 deletions setup.py
@@ -1,14 +1,15 @@
#!/usr/bin/env python
import os
import sys
from distutils.core import setup

setup_args = {}

setup_args.update(dict(
name='param',
version="1.3.1",
version="1.3.2",
description='Declarative Python programming using Parameters.',
long_description=open('README.rst').read(),
long_description=open('README.rst').read() if os.path.isfile('README.rst') else 'Consult README.rst',
author= "IOAM",
author_email= "developers@topographica.org",
maintainer= "IOAM",
Expand Down Expand Up @@ -40,7 +41,7 @@

if __name__=="__main__":

if 'upload' in sys.argv:
if ('upload' in sys.argv) or ('sdist' in sys.argv):
import param, numbergen
param.__version__.verify(setup_args['version'])
numbergen.__version__.verify(setup_args['version'])
Expand Down

1 comment on commit 1459880

@jbednar
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok

Please sign in to comment.