From 4b0f6777d24f6836f8cea9046b43f948acda9ccf Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 9 Oct 2016 16:44:25 +0300 Subject: Require Python 2.7 --- debian/changelog | 7 +++++++ obnamlib/__init__.py | 2 +- obnamlib/version.py | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index fbbdb47b..1d4c57ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +obnam (1.19.1+git-1) UNRELEASED; urgency=medium + + * New upstream version. + * Require Python 2.7. + + -- Lars Wirzenius Sun, 09 Oct 2016 16:44:10 +0300 + obnam (1.19.1-1) unstable; urgency=medium * New upstream version. diff --git a/obnamlib/__init__.py b/obnamlib/__init__.py index 21428777..bd72f041 100644 --- a/obnamlib/__init__.py +++ b/obnamlib/__init__.py @@ -17,7 +17,7 @@ import cliapp -from .version import __version__ +from .version import __version__, __version_info__ from .structurederror import StructuredError from .structurederror_finder import find_structured_errors from .obnamerror import ObnamError diff --git a/obnamlib/version.py b/obnamlib/version.py index 8bd18bf3..563f51a9 100644 --- a/obnamlib/version.py +++ b/obnamlib/version.py @@ -15,4 +15,5 @@ # # =*= License: GPL-3+ =*= -__version__ = '1.19.1' +__version__ = '1.19.1+git' +__version_info__ = (1, 19, 1, '+git') -- cgit v1.2.1