Skip to content

Commit

Permalink
Core: update modules (ArchipelagoMW#1612)
Browse files Browse the repository at this point in the history
  • Loading branch information
Berserker66 authored Mar 30, 2023
1 parent af44c1b commit cd4fd18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit cd4fd18

Please sign in to comment.