From 98b64621c24b4a995042ddffe009f900138ccc60 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Tue, 14 Nov 2023 07:54:20 -0800 Subject: [PATCH] Loosen platformdirs dependency (#1843) 4.x is backwards compatible with 3.x except that site_cache_dir has moved to /var/cache. Vorta doesn't use this. https://github.com/platformdirs/platformdirs/releases/tag/4.0.0 --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index edddb2f1..6cda372a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,8 +37,8 @@ package_dir = include_package_data = true python_requires = >=3.8 install_requires = - platformdirs >=3.0.0, <4.0.0; sys_platform == 'darwin' # for macOS: breaking changes in 3.0.0, - platformdirs >=2.6.0, <4.0.0; sys_platform != 'darwin' # for others: 2.6+ works consistently. + platformdirs >=3.0.0, <5.0.0; sys_platform == 'darwin' # for macOS: breaking changes in 3.0.0, + platformdirs >=2.6.0, <5.0.0; sys_platform != 'darwin' # for others: 2.6+ works consistently. pyqt6 peewee psutil