py-urllib3: updated to 1.26.8
1.26.8 (2022-01-07) ------------------- * Added extra message to``urllib3.exceptions.ProxyError`` when urllib3 detects that a proxy is configured to use HTTPS but the proxy itself appears to only use HTTP. * Added a mention of the size of the connection pool when discarding a connection due to the pool being full. * Added explicit support for Python 3.11. * Deprecated the ``Retry.MAX_BACKOFF`` class property in favor of ``Retry.DEFAULT_MAX_BACKOFF`` to better match the rest of the default parameter names. ``Retry.MAX_BACKOFF`` is removed in v2.0. * Changed location of the vendored ``ssl.match_hostname`` function from ``urllib3.packages.ssl_match_hostname`` to ``urllib3.util.ssl_match_hostname`` to ensure Python 3.10+ compatibility after being repackaged by downstream distributors. * Fixed absolute imports, all imports are now relative.
This commit is contained in:
parent
8415597986
commit
d8fb23f650
3 changed files with 10 additions and 14 deletions
|
@ -1,8 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.32 2022/01/04 20:55:36 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.33 2022/01/07 16:18:59 adam Exp $
|
||||
|
||||
DISTNAME= urllib3-1.26.7
|
||||
DISTNAME= urllib3-1.26.8
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
PKGREVISION= 1
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=u/urllib3/}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.11 2020/11/12 09:00:07 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.12 2022/01/07 16:18:59 adam Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -70,12 +70,6 @@ ${PYSITELIB}/urllib3/packages/backports/makefile.pyo
|
|||
${PYSITELIB}/urllib3/packages/six.py
|
||||
${PYSITELIB}/urllib3/packages/six.pyc
|
||||
${PYSITELIB}/urllib3/packages/six.pyo
|
||||
${PYSITELIB}/urllib3/packages/ssl_match_hostname/__init__.py
|
||||
${PYSITELIB}/urllib3/packages/ssl_match_hostname/__init__.pyc
|
||||
${PYSITELIB}/urllib3/packages/ssl_match_hostname/__init__.pyo
|
||||
${PYSITELIB}/urllib3/packages/ssl_match_hostname/_implementation.py
|
||||
${PYSITELIB}/urllib3/packages/ssl_match_hostname/_implementation.pyc
|
||||
${PYSITELIB}/urllib3/packages/ssl_match_hostname/_implementation.pyo
|
||||
${PYSITELIB}/urllib3/poolmanager.py
|
||||
${PYSITELIB}/urllib3/poolmanager.pyc
|
||||
${PYSITELIB}/urllib3/poolmanager.pyo
|
||||
|
@ -109,6 +103,9 @@ ${PYSITELIB}/urllib3/util/retry.pyo
|
|||
${PYSITELIB}/urllib3/util/ssl_.py
|
||||
${PYSITELIB}/urllib3/util/ssl_.pyc
|
||||
${PYSITELIB}/urllib3/util/ssl_.pyo
|
||||
${PYSITELIB}/urllib3/util/ssl_match_hostname.py
|
||||
${PYSITELIB}/urllib3/util/ssl_match_hostname.pyc
|
||||
${PYSITELIB}/urllib3/util/ssl_match_hostname.pyo
|
||||
${PYSITELIB}/urllib3/util/ssltransport.py
|
||||
${PYSITELIB}/urllib3/util/ssltransport.pyc
|
||||
${PYSITELIB}/urllib3/util/ssltransport.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.30 2021/10/26 11:30:49 nia Exp $
|
||||
$NetBSD: distinfo,v 1.31 2022/01/07 16:18:59 adam Exp $
|
||||
|
||||
BLAKE2s (urllib3-1.26.7.tar.gz) = 1f9d4b1f74c1414e9a981b322564263857cd51268a4718bc35dcc08d9d26fc8e
|
||||
SHA512 (urllib3-1.26.7.tar.gz) = 6f5a5e6dd5ff99950fcc051495e0a698153b57e20b6c83d869b54c7fece9616909bcf2fe99efc40815f8722996ad93e430bf765ce5c629b912690c286014b86f
|
||||
Size (urllib3-1.26.7.tar.gz) = 291350 bytes
|
||||
BLAKE2s (urllib3-1.26.8.tar.gz) = ecd85c18f399f374e14ffbe91de3d56e9dd38e8f9a535bd0a81e55a0dc0ee7a6
|
||||
SHA512 (urllib3-1.26.8.tar.gz) = bcb56faa5dbe6019f70b63c076e118ec5f89e2d0c25f0e415d9db079532c98ced7e636cec5bf26210d4b0a08bb7b5b7a33a5c8648ccdaad129eea3a212a53bc5
|
||||
Size (urllib3-1.26.8.tar.gz) = 294280 bytes
|
||||
|
|
Loading…
Reference in a new issue