Skip to content

Commit

Permalink
More version bumping
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Feb 16, 2015
1 parent 8c82452 commit d7fc02e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ For Mac OS X, only the *reprounzip* component is available.
Binaries
--------

An installer containing Python 2.7, *reprounzip* and all the plugins can be `downloaded from GitHub <https://github.com/ViDA-NYU/reprozip/releases/download/0.5.1/reprounzip-0.5.1.pkg>`_.
An installer containing Python 2.7, *reprounzip* and all the plugins can be `downloaded from GitHub <https://github.com/ViDA-NYU/reprozip/releases/download/0.6/reprounzip-0.6.pkg>`_.

Required Software Packages
--------------------------
Expand Down Expand Up @@ -144,7 +144,7 @@ For Windows, only the *reprounzip* component is available.
Binaries
--------

A 32-bit installer containing Python 2.7, *reprounzip*, and all the plugins can be `downloaded from GitHub <https://github.com/ViDA-NYU/reprozip/releases/download/0.5.1/reprounzip-0.5.1-setup.exe>`_.
A 32-bit installer containing Python 2.7, *reprounzip*, and all the plugins can be `downloaded from GitHub <https://github.com/ViDA-NYU/reprozip/releases/download/0.6/reprounzip-0.6-setup.exe>`_.

Required Software Packages
--------------------------
Expand Down
4 changes: 2 additions & 2 deletions reprounzip/reprounzip/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def load_config(filename, canonical, File=File, Package=Package):
keys_ = set(config)
if 'version' not in keys_:
raise InvalidConfig("Missing version")
# Accepts versions from 0.2 to 0.5 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.6'):
# Accepts versions from 0.2 to 0.6 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.7'):
pkgname = (__package__ or __name__).split('.', 1)[0]
raise InvalidConfig("Loading configuration file in unknown format %s; "
"this probably means that you should upgrade "
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from reprounzip.unpackers.common import UsageError


__version__ = '0.5.1'
__version__ = '0.6'


unpackers = {}
Expand Down
2 changes: 1 addition & 1 deletion reprozip/reprozip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# This file is part of ReproZip which is released under the Revised BSD License
# See file LICENSE for full license details.

__version__ = '0.5.1'
__version__ = '0.6'
4 changes: 2 additions & 2 deletions reprozip/reprozip/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ def load_config(filename, canonical, File=File, Package=Package):
keys_ = set(config)
if 'version' not in keys_:
raise InvalidConfig("Missing version")
# Accepts versions from 0.2 to 0.5 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.6'):
# Accepts versions from 0.2 to 0.6 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.7'):
pkgname = (__package__ or __name__).split('.', 1)[0]
raise InvalidConfig("Loading configuration file in unknown format %s; "
"this probably means that you should upgrade "
Expand Down

0 comments on commit d7fc02e

Please sign in to comment.