Remove importlib-metadata from requirements

We don't need it anymore as we don't support python < 3.8
Also it was removed from global requirements so it breaks the
requirements check.

Change-Id: I9a053e4a2fd11b3cfcf2d9de6ba6441c7d5b0dc2
This commit is contained in:
likui 2023-10-09 10:41:41 +08:00 committed by Takashi Kajinami
parent 8378110c1a
commit 2e84353660
2 changed files with 1 additions and 7 deletions

View File

@ -201,15 +201,10 @@ Additional information about the services can be found in the
"""
import atexit
import concurrent.futures
import importlib.metadata as importlib_metadata
import warnings
import weakref
try:
# For python 3.8 and later
import importlib.metadata as importlib_metadata
except ImportError:
# For everyone else
import importlib_metadata # type: ignore
import keystoneauth1.exceptions
import requestsexceptions

View File

@ -1,7 +1,6 @@
cryptography>=2.7 # BSD/Apache-2.0
decorator>=4.4.1 # BSD
dogpile.cache>=0.6.5 # BSD
importlib_metadata>=1.7.0;python_version<'3.8' # Apache-2.0
iso8601>=0.1.11 # MIT
jmespath>=0.9.0 # MIT
jsonpatch!=1.20,>=1.16 # BSD