From caffe0e800f046ae482ffbf319cfccfa2bcc6660 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Mon, 2 Jan 2012 13:28:24 -0200 Subject: [PATCH] extras/makedeb.py: no longer obtaining version from git --- extras/makedeb.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extras/makedeb.py b/extras/makedeb.py index 63410b2df..70b13671f 100644 --- a/extras/makedeb.py +++ b/extras/makedeb.py @@ -16,9 +16,8 @@ def build(suffix): with open(ifn, 'w') as of: of.write(s) - env={'SCRAPY_VERSION_FROM_GIT': '1'} check_call('debchange -m -D unstable --force-distribution -v $(python setup.py --version)+$(date +%s) "Automatic build"', \ - shell=True, env=env) + shell=True) check_call('debuild -us -uc -b', shell=True) def clean(suffix):