Skip to content

Commit

Permalink
build: Use platformdirs instead of deprecated appdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Jun 8, 2024
1 parent bca6e3f commit 95caaba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ classifiers = [
"Typing :: Typed",
]
dependencies = [
"appdirs>=1.4",
"loguru>=0.5",
"platformdirs>=4.2",
"requests>=2.19",
"tomli>=2.0; python_version < '3.11'",
"websocket-client>=0.58",
Expand Down
2 changes: 1 addition & 1 deletion src/aria2p/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from pathlib import Path
from typing import TYPE_CHECKING, Any

from appdirs import user_config_dir
from loguru import logger
from platformdirs import user_config_dir

if TYPE_CHECKING:
from datetime import timedelta
Expand Down

0 comments on commit 95caaba

Please sign in to comment.