From a909dc5f0f2aa59fd7cf3d12c64cad1d4c421156 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 22 Oct 2023 01:45:23 +0200 Subject: [PATCH] [Fix] The base per-OS requirements filename is always lowercase. --- platypush/utils/manifest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platypush/utils/manifest.py b/platypush/utils/manifest.py index e850f434..bf4be609 100644 --- a/platypush/utils/manifest.py +++ b/platypush/utils/manifest.py @@ -364,7 +364,8 @@ class Dependencies: return cls._parse_requirements_file( os.path.join( - cls._get_requirements_dir(), pkg_manager.value.default_os.name + '.txt' + cls._get_requirements_dir(), + pkg_manager.value.default_os.name.lower() + '.txt', ), install_context, )