The importlib.resources.files() API was not added until 3.9.
Change-Id: I62ef8974d6637394448346d7e0f86c6dd93f81a7
pass
-if py37:
+if py39:
from importlib import resources as importlib_resources
else:
import importlib_resources # noqa
``setuptools``. The functionality has been replaced with
``importlib.metadata`` and ``importlib.resources`` which are both part of
Python std.lib, or via pypy dependency ``importlib-metadata`` for Python
- version < 3.8 and ``importlib-resources`` for Python version < 3.7.
+ version < 3.8 and ``importlib-resources`` for Python version < 3.9
+ (while importlib.resources was added to Python in 3.7, it did not include
+ the "files" API until 3.9).
SQLAlchemy>=1.3.0
Mako
importlib-metadata;python_version<"3.8"
- importlib-resources;python_version<"3.7"
+ importlib-resources;python_version<"3.9"
[options.extras_require]
tz =