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: Force upstream source version.
The default setup.py from upstream assume everyone clone their git repo to
derive version number from there. This is not true on Debian, so provide
workaround.
Author: Petter Reinholdtsen <pere@hungry.com>
Forwarded: no
Reviewed-By: Petter Reinholdtsen <pere@hungry.com>
Last-Update: 2018-06-11
Index: python-httpsig/setup.py
===================================================================
--- python-httpsig.orig/setup.py 2019-01-20 08:55:35.789325679 +0100
+++ python-httpsig/setup.py 2019-01-20 08:55:56.357542954 +0100
@@ -9,6 +9,7 @@
setup(
name='httpsig',
+ version='1.3.0',
description="Secure HTTP request signing using the HTTP Signature draft specification",
long_description=long_description,
classifiers=[
@@ -34,7 +35,7 @@
packages=find_packages(),
include_package_data=True,
zip_safe=True,
- use_scm_version=True,
+ #use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=['pycryptodome>=3,<4', 'six'],
test_suite="httpsig.tests",
|