Use the built-in importlib.metadata library in Python 3.8+ (#36225)

importlib_metadata is a backport of this library for Python 3.7 and
older.
This commit is contained in:
Jeffery To 2020-06-17 21:21:14 +08:00 committed by GitHub
parent b464096edb
commit a74e35795c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 4 deletions

View file

@ -39,7 +39,7 @@ REQUIRES = [
"bcrypt==3.1.7",
"certifi>=2020.4.5.1",
"ciso8601==2.1.3",
"importlib-metadata==1.6.0",
"importlib-metadata==1.6.0;python_version<'3.8'",
"jinja2>=2.11.1",
"PyJWT==1.7.1",
# PyJWT has loose dependency. We want the latest one.