summaryrefslogtreecommitdiff
path: root/debian/patches/no-version-in-setup.patch
blob: 901feffdaad05bbb9b10728a0bc1070e6f9b45c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Description: Manually enter version number
 This patch comments out version number generation logic of upstream as it is
 partially broken due to missing _version.py file.
 .
 This patch should be removed once that is fixed.
Author: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Last-Update: 2016-11-12
Forwaded: not-needed
diff --git a/setup.py b/setup.py
index e4fb8b4..813a46b 100644
--- a/setup.py
+++ b/setup.py
@@ -341,7 +341,7 @@ class UpdateVersion(object):
             if mo:
                 return mo.group(1)
 
-version = UpdateVersion().run()
+#version = UpdateVersion().run()
 
 class Test(Command):
     description = "run tests"
@@ -387,7 +387,7 @@ commands["bench"] = Bench
 
 def _setup(longdescription):
     setup(name=PKG,
-          version=version,
+          version="0.7.1",
           description='Python wrappers for a few algorithms from the Crypto++ library',
           long_description=longdescription,
           author='Zooko Wilcox',