mirror of
https://github.com/clearlinux/autospec.git
synced 2026-08-26 18:35:57 +00:00
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:
committed by
William Douglas
parent
6e27461121
commit
8ef7dcfebf
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user