diff --git a/docs/source/install.rst b/docs/source/install.rst index 9dce97f57..6e126ae45 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -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 `_. +An installer containing Python 2.7, *reprounzip* and all the plugins can be `downloaded from GitHub `_. Required Software Packages -------------------------- @@ -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 `_. +A 32-bit installer containing Python 2.7, *reprounzip*, and all the plugins can be `downloaded from GitHub `_. Required Software Packages -------------------------- diff --git a/reprounzip/reprounzip/common.py b/reprounzip/reprounzip/common.py index 12ae283c9..a638c5974 100644 --- a/reprounzip/reprounzip/common.py +++ b/reprounzip/reprounzip/common.py @@ -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 " diff --git a/reprounzip/reprounzip/main.py b/reprounzip/reprounzip/main.py index 68c6626b7..dd8f795c2 100644 --- a/reprounzip/reprounzip/main.py +++ b/reprounzip/reprounzip/main.py @@ -28,7 +28,7 @@ from reprounzip.unpackers.common import UsageError -__version__ = '0.5.1' +__version__ = '0.6' unpackers = {} diff --git a/reprozip/reprozip/__init__.py b/reprozip/reprozip/__init__.py index ca19a888f..71591a793 100644 --- a/reprozip/reprozip/__init__.py +++ b/reprozip/reprozip/__init__.py @@ -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' diff --git a/reprozip/reprozip/common.py b/reprozip/reprozip/common.py index 12ae283c9..a638c5974 100644 --- a/reprozip/reprozip/common.py +++ b/reprozip/reprozip/common.py @@ -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 "