Core: update modules (#1612)

This commit is contained in:
Fabian Dill 2023-03-30 15:30:43 +02:00 committed by GitHub
parent af44c1ba3d
commit cd4fd18706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -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)

View File

@ -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