py-urllib3: add v1.26.6 (#25207)
This commit is contained in:
parent
0026d60b60
commit
d734bfda18
1 changed files with 10 additions and 3 deletions
|
@ -13,21 +13,28 @@ class PyUrllib3(PythonPackage):
|
||||||
homepage = "https://urllib3.readthedocs.io/"
|
homepage = "https://urllib3.readthedocs.io/"
|
||||||
pypi = "urllib3/urllib3-1.25.6.tar.gz"
|
pypi = "urllib3/urllib3-1.25.6.tar.gz"
|
||||||
|
|
||||||
|
version('1.26.6', sha256='f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f')
|
||||||
version('1.25.6', sha256='9a107b99a5393caf59c7aa3c1249c16e6879447533d0887f4336dde834c7be86')
|
version('1.25.6', sha256='9a107b99a5393caf59c7aa3c1249c16e6879447533d0887f4336dde834c7be86')
|
||||||
version('1.25.3', sha256='dbe59173209418ae49d485b87d1681aefa36252ee85884c31346debd19463232')
|
version('1.25.3', sha256='dbe59173209418ae49d485b87d1681aefa36252ee85884c31346debd19463232')
|
||||||
version('1.21.1', sha256='b14486978518ca0901a76ba973d7821047409d7f726f22156b24e83fd71382a5')
|
version('1.21.1', sha256='b14486978518ca0901a76ba973d7821047409d7f726f22156b24e83fd71382a5')
|
||||||
version('1.20', sha256='97ef2b6e2878d84c0126b9f4e608e37a951ca7848e4855a7f7f4437d5c34a72f')
|
version('1.20', sha256='97ef2b6e2878d84c0126b9f4e608e37a951ca7848e4855a7f7f4437d5c34a72f')
|
||||||
version('1.14', sha256='dd4fb13a4ce50b18338c7e4d665b21fd38632c5d4b1d9f1a1379276bd3c08d37')
|
version('1.14', sha256='dd4fb13a4ce50b18338c7e4d665b21fd38632c5d4b1d9f1a1379276bd3c08d37')
|
||||||
|
|
||||||
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
|
variant('socks', default=False, description='SOCKS and HTTP proxy support')
|
||||||
|
variant('secure', default=False, description='Add SSL/TLS support')
|
||||||
|
variant('brotli', default=False, description='Add Brotli support')
|
||||||
|
|
||||||
|
depends_on('python@2.7:2.8,3.4:', when='@:1.25', type=('build', 'run'))
|
||||||
|
depends_on('python@2.7:2.8,3.5:', when='@1.26.6', type=('build', 'run'))
|
||||||
|
|
||||||
depends_on('py-setuptools', type='build')
|
depends_on('py-setuptools', type='build')
|
||||||
|
|
||||||
variant('secure', default=False, description='Add SSL/TLS support')
|
|
||||||
depends_on('py-pyopenssl@0.14:', when='+secure')
|
depends_on('py-pyopenssl@0.14:', when='+secure')
|
||||||
depends_on('py-cryptography@1.3.4:', when='+secure')
|
depends_on('py-cryptography@1.3.4:', when='+secure')
|
||||||
depends_on('py-idna@2:', when='+secure')
|
depends_on('py-idna@2:', when='+secure')
|
||||||
depends_on('py-certifi', when='+secure')
|
depends_on('py-certifi', when='+secure')
|
||||||
depends_on('py-ipaddress', when='+secure ^python@2.7:2.8')
|
depends_on('py-ipaddress', when='+secure ^python@2.7:2.8')
|
||||||
|
|
||||||
variant('socks', default=False, description='SOCKS and HTTP proxy support')
|
|
||||||
depends_on('py-pysocks@1.5.6,1.5.8:1.999', when='+socks')
|
depends_on('py-pysocks@1.5.6,1.5.8:1.999', when='+socks')
|
||||||
|
|
||||||
|
depends_on('py-brotlipy@0.6:', when='+brotli')
|
||||||
|
|
Loading…
Reference in a new issue