Ban the 'ipaddress' package

The standard library has shipped an `ipaddress` module since Python 3.3,
so we don't need this package anymore.

Signed-off-by: Patrick McCarty <patrick.mccarty@intel.com>
This commit is contained in:
Patrick McCarty
2020-04-30 21:54:05 -07:00
committed by William Douglas
parent 6e27461121
commit 8ef7dcfebf
+4 -2
View File
@@ -276,7 +276,8 @@ class Requirements(object):
"""Initialize Default requirements settings."""
self.banned_requires = {None: set(["futures",
"configparser",
"typing"])}
"typing",
"ipaddress"])}
self.buildreqs = set()
self.buildreqs_cache = set()
self.requires = {None: set(), "pypi": set()}
@@ -296,7 +297,8 @@ class Requirements(object):
"libxml2No-python",
"futures",
"configparser",
"typing"])
"typing",
"ipaddress"])
self.autoreconf_reqs = ["gettext-bin",
"automake-dev",
"automake",