From cd4fd18706418abce27132a1d551e00c5e7a85e3 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 30 Mar 2023 15:30:43 +0200 Subject: [PATCH] Core: update modules (#1612) --- Utils.py | 4 ++-- requirements.txt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Utils.py b/Utils.py index fb0906197113..f1db35635bc0 100644 --- a/Utils.py +++ b/Utils.py @@ -151,8 +151,8 @@ def cache_path(*path: str) -> str: if hasattr(cache_path, "cached_path"): pass else: - import appdirs - cache_path.cached_path = appdirs.user_cache_dir("Archipelago", False) + import platformdirs + cache_path.cached_path = platformdirs.user_cache_dir("Archipelago", False) return os.path.join(cache_path.cached_path, *path) diff --git a/requirements.txt b/requirements.txt index 8c73949dd475..5b50664475e2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ colorama>=0.4.5 websockets>=10.3 PyYAML>=6.0 -jellyfish>=0.9.0 +jellyfish>=0.11.0 jinja2>=3.1.2 schema>=0.7.5 kivy>=2.1.0 -bsdiff4>=1.2.2 -appdirs>=1.4.4 +bsdiff4>=1.2.3 +platformdirs>=3.2.0