File relax-requirements.patch of Package gitlint
diff -u -r gitlint-0.11.0/gitlint.egg-info/requires.txt gitlint-0.11.0.patched/gitlint.egg-info/requires.txt
--- gitlint-0.11.0/gitlint.egg-info/requires.txt 2019-03-13 14:16:59.000000000 +0100
+++ gitlint-0.11.0.patched/gitlint.egg-info/requires.txt 2019-07-04 15:34:32.604844335 +0200
@@ -1,9 +1,9 @@
-Click==6.7
-arrow==0.10.0
+Click>=6.7
+arrow>=0.10.0
[:python_version < "2.7"]
-importlib==1.0.3
-ordereddict==1.1
+importlib>=1.0.3
+ordereddict>=1.1
[:sys_platform != "win32"]
-sh==1.12.14
+sh>=1.12.14
diff -u -r gitlint-0.11.0/setup.py gitlint-0.11.0.patched/setup.py
--- gitlint-0.11.0/setup.py 2019-03-13 13:26:51.000000000 +0100
+++ gitlint-0.11.0.patched/setup.py 2019-07-04 15:33:46.932567901 +0200
@@ -65,16 +65,16 @@
"License :: OSI Approved :: MIT License"
],
install_requires=[
- 'Click==6.7',
- 'arrow==0.10.0'
+ 'Click>=6.7',
+ 'arrow>=0.10.0'
],
extras_require={
':python_version < "2.7"': [
- 'importlib==1.0.3',
- 'ordereddict==1.1',
+ 'importlib>=1.0.3',
+ 'ordereddict>=1.1',
],
':sys_platform != "win32"': [
- 'sh==1.12.14',
+ 'sh>=1.12.14',
],
},
keywords='gitlint git lint',