Skip to content
Snippets Groups Projects
Commit 35db7413 authored by Dan Villiom Podlaski Christiansen's avatar Dan Villiom Podlaski Christiansen
Browse files

demandimport: add 'ipaddress' to ignores, so urllib3 can detect its absence

Pulling from Bitbucket fails under Python 2.7 without this. Reported
on the list by @mharbison.
parent a76d758e
No related branches found
No related tags found
2 merge requests!100compat: add support for mercurial 5.8 & default,!99compat: add support for mercurial 5.8 & default
Pipeline #21896 canceled
......@@ -143,8 +143,9 @@
demandimport.IGNORES |= {
b'collections',
b'brotli', # only needed in Python 2.7
b'ipaddress', # only needed in Python 2.7
}
except AttributeError: # pre 4.7 API
demandimport.ignore.extend([
b'collections',
b'brotli',
......@@ -146,8 +147,9 @@
}
except AttributeError: # pre 4.7 API
demandimport.ignore.extend([
b'collections',
b'brotli',
b'ipaddress',
])
__version__ = b'0.10.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment