Fix previous: allow newer versions of some dependencies.
This commit is contained in:
parent
980e5ca591
commit
386e558c94
3 changed files with 15 additions and 23 deletions
|
@ -1,9 +1,8 @@
|
|||
$NetBSD: distinfo,v 1.26 2017/07/22 09:41:05 adam Exp $
|
||||
$NetBSD: distinfo,v 1.27 2017/07/22 19:25:38 wiz Exp $
|
||||
|
||||
SHA1 (requests-2.18.1.tar.gz) = 8927e5bf2feb7fa43844e4972e48f9a384f7029d
|
||||
RMD160 (requests-2.18.1.tar.gz) = fc6cfa5b4918efabee6c95dd5326d46f01942012
|
||||
SHA512 (requests-2.18.1.tar.gz) = d7482ddce36ce633bee830bc8d9f9a207e1c20595378f7c60dcef01cab016a16704965f3b52e3faac63dd50fbe7c61d575742e71f51a2b8d41c1922df2dbaa06
|
||||
Size (requests-2.18.1.tar.gz) = 124229 bytes
|
||||
SHA1 (patch-requests.egg-info_requires.txt) = 8413bcf70ae79356aab88fe8046612146afed931
|
||||
SHA1 (patch-requests_____init____.py) = 733037737da7f012030e89091d1b3ca28c3d7657
|
||||
SHA1 (patch-setup.py) = 767a3713ba3f836b9294fca15046854823f3fd02
|
||||
SHA1 (patch-setup.py) = 636c72dafa62e20973448bc79b23a335d31ffa66
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
$NetBSD: patch-requests.egg-info_requires.txt,v 1.1 2017/07/22 09:41:05 adam Exp $
|
||||
|
||||
Loosen requires.
|
||||
|
||||
--- requests.egg-info/requires.txt.orig 2017-07-22 09:38:59.000000000 +0000
|
||||
+++ requests.egg-info/requires.txt
|
||||
@@ -1,6 +1,6 @@
|
||||
-chardet>=3.0.2,<3.1.0
|
||||
-idna>=2.5,<2.6
|
||||
-urllib3>=1.21.1,<1.22
|
||||
+chardet>=3.0.2
|
||||
+idna>=2.5
|
||||
+urllib3>=1.21.1
|
||||
certifi>=2017.4.17
|
||||
|
||||
[security]
|
|
@ -1,10 +1,19 @@
|
|||
$NetBSD: patch-setup.py,v 1.1 2017/05/29 10:43:42 adam Exp $
|
||||
$NetBSD: patch-setup.py,v 1.2 2017/07/22 19:25:38 wiz Exp $
|
||||
|
||||
Allow newer pytest-httpbin (used only for testing).
|
||||
Allow newer versions of dependencies.
|
||||
|
||||
--- setup.py.orig 2017-05-29 09:48:14.000000000 +0000
|
||||
--- setup.py.orig 2017-06-14 17:44:15.000000000 +0000
|
||||
+++ setup.py
|
||||
@@ -44,7 +44,7 @@ requires = [
|
||||
@@ -42,13 +42,13 @@ if sys.argv[-1] == 'publish':
|
||||
packages = ['requests']
|
||||
|
||||
requires = [
|
||||
- 'chardet>=3.0.2,<3.1.0',
|
||||
- 'idna>=2.5,<2.6',
|
||||
- 'urllib3>=1.21.1,<1.22',
|
||||
+ 'chardet>=3.0.2',
|
||||
+ 'idna>=2.5',
|
||||
+ 'urllib3>=1.21.1',
|
||||
'certifi>=2017.4.17'
|
||||
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue