fix __version__ v0.3
authorTomasz Buchert <tomasz@debian.org>
Sat, 29 Aug 2015 22:21:18 +0000 (00:21 +0200)
committerTomasz Buchert <tomasz@debian.org>
Sat, 29 Aug 2015 22:21:18 +0000 (00:21 +0200)
debocker
setup.py
src/debocker/__init__.py
src/debocker/debian.py

index da3cda6..fbb5132 100755 (executable)
--- a/debocker
+++ b/debocker
@@ -15,8 +15,6 @@ from debocker.utils import tmppath, \
 from debocker.log import log, fail, LOW, set_verbosity, is_verbose
 from debocker.debian import Package, docker_build_bundle, STAGES
 
-__version__ = "0.2"
-
 # CLI INTERFACE
 
 @click.group()
index 38aa4c9..6b2453b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ except ImportError:
     from distutils.core import setup, find_packages
 
 # Thanks requests
-with open('debocker', 'r') as fd:
+with open('src/debocker/__init__.py', 'r') as fd:
     version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
                         fd.read(), re.MULTILINE).group(1)
 
index 5c21d1e..1fb309d 100644 (file)
@@ -1 +1,3 @@
 # init file
+
+__version__ = '0.3'
index 72f4714..31672ec 100644 (file)
@@ -6,6 +6,7 @@ from shutil import which, copyfile, copytree
 from shlex import quote as shell_quote
 from os.path import isdir, join, isfile, abspath, splitext, \
     dirname, realpath
+from . import __version__
 from .log import log, fail, LOW
 from .utils import log_check_call, log_check_output, \
     tmppath, cached_property, get_filelist, calculate_md5_and_size, \