From cdef4e73930f056c3eec2730eb88984c9ca8a088 Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sun, 19 May 2024 16:49:08 -0400 Subject: [PATCH] build: add importlib_metadata dependency Signed-off-by: Eric Callahan --- pyproject.toml | 3 ++- scripts/moonraker-requirements.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b46f934..2630542 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,8 @@ dependencies = [ "dbus-next==0.2.3", "apprise==1.8.0", "ldap3==2.9.1", - "python-periphery==2.4.1" + "python-periphery==2.4.1", + "importlib_metadata==6.7.0 ; python_version=='3.7'" ] requires-python = ">=3.7" readme = "README.md" diff --git a/scripts/moonraker-requirements.txt b/scripts/moonraker-requirements.txt index 9bffbbf..8ac96b3 100644 --- a/scripts/moonraker-requirements.txt +++ b/scripts/moonraker-requirements.txt @@ -19,3 +19,4 @@ dbus-next==0.2.3 apprise==1.8.0 ldap3==2.9.1 python-periphery==2.4.1 +importlib_metadata==6.7.0 ; python_version=='3.7'