From 2800e4c85e004e9c33644b5f218d634d50aab15f Mon Sep 17 00:00:00 2001 From: Max Drexler <mndrexler@wisc.edu> Date: Wed, 17 Jul 2024 21:35:33 +0000 Subject: [PATCH] add importlib-resources backport --- pyproject.toml | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8aa05c4..da5a069 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ dependencies = [ "watchfiles >= 0.20.0", "python-dotenv >= 1.0.0", "quickmq >= 1.1.0", + "importlib-resources; python_version < '3.9'", "typing-extensions", ] requires-python = ">=3.8" diff --git a/requirements.txt b/requirements.txt index 6134879..2553c2a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ watchfiles >= 0.20.0 python-dotenv >= 1.0.0 quickmq >= 1.1.0 typing-extensions +importlib_resoureces; python_version < '3.9' -- GitLab