summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Geier <geier@lostpackets.de>2024-04-12 14:38:02 +0200
committerChristian Geier <geier@lostpackets.de>2024-04-13 23:36:33 +0200
commite6de6e2f7ecf57edb246b5e8629685160de9d1cf (patch)
treece25db9c375480c90302f9e8e4c6d98cbb0218da
parent0ab2021da9e528758c212f666f7c3948f91e9088 (diff)
install importlib-metadata for python <= 3.9
-rw-r--r--pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 84d1739f..53f8658a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -46,6 +46,7 @@ test = [
"packaging",
"vdirsyncer",
"setuptools", # python > 3.12 does not ship pkg_resources anymore
+ "importlib-metadata; python_version <= '3.9'", # importlib.metadata is in stdlib since 3.10
]
docs = [
"sphinx!=1.6.1",