Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEP: appdirs->platformdirs #37

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion msal_requests_auth/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from pathlib import Path
from typing import Union

from appdirs import user_cache_dir
from msal import SerializableTokenCache
from platformdirs import user_cache_dir


class _BaseTokenCache(ABC, SerializableTokenCache):
Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
python_version = 3.10
allow_redefinition = True

[mypy-appdirs]
[mypy-platformdirs]
ignore_missing_imports = True

[mypy-msal]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
python_requires = >=3.10
include_package_data = True
install_requires =
appdirs
platformdirs
msal
pyperclip
requests
Expand Down
Loading