diff options
author | Daniel Schadt <kingdread@gmx.de> | 2022-11-19 23:24:20 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2022-11-19 23:24:20 +0100 |
commit | 20fd6620deb79f214cd2b7c9474b5df0d2fbda5b (patch) | |
tree | 5bc123a4d657fbfa49acc7de4aa4722e7de59726 /pyproject.toml | |
parent | a600d7e974053b667605914728020c5671ace8f8 (diff) | |
download | fietsboek-20fd6620deb79f214cd2b7c9474b5df0d2fbda5b.tar.gz fietsboek-20fd6620deb79f214cd2b7c9474b5df0d2fbda5b.tar.bz2 fietsboek-20fd6620deb79f214cd2b7c9474b5df0d2fbda5b.zip |
restore compatibility with python 3.7
importlib.metadata was introduced in 3.8 :-(
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3504164..515c83b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,10 @@ transaction = "^3" "zope.sqlalchemy" = "^1.6" redis = "^4.3.4" +# Compatibility with old Python versions importlib_resources = "^5.10" +importlib_metadata = "^5.0.0" + Babel = "^2.11" cryptography = "^38" gpxpy = "^1.5" |