Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -0,0 +1,20 @@
$NetBSD: patch-setup.py,v 1.2 2016/04/20 16:10:14 leot Exp $
Avoid too strict version requirements.
--- setup.py.orig 2016-04-13 11:17:13.000000000 +0000
+++ setup.py
@@ -61,10 +61,10 @@ setup(
'Programming Language :: Python :: Implementation :: PyPy',
],
install_requires=[
- 'hyperframe>=3.1, <5, !=4.0.0',
- 'hpack>=2.0, <3',
+ 'hyperframe>=3.1',
+ 'hpack>=2.0',
],
extras_require={
- ':python_version == "2.7" or python_version == "3.3"': ['enum34>=1.0.4, <2'],
+ ':python_version == "2.7" or python_version == "3.3"': ['enum34>=1.0.4'],
}
)