summaryrefslogtreecommitdiff
path: root/requests_cache/backends/sqlite.py
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2022-03-12 16:08:18 +0000
committerJordan Cook <jordan.cook@pioneer.com>2022-03-14 11:05:00 -0500
commit2869a6442b94fe8a6ffdf33abbf4cf010783f802 (patch)
tree0c7180490bbc981581d843390a61b76bb6d1c729 /requests_cache/backends/sqlite.py
parent2ed99885616f4244a227a3c6567348a18bc3abfc (diff)
downloadrequests-cache-2869a6442b94fe8a6ffdf33abbf4cf010783f802.tar.gz
Swap out appdirs for platformdirs
* platformdirs is a more actively maintained fork of appdirs. * Also relax requirements a bit for attrs and urllib (minimum instead of caret constraint) Dependabot update: Bump responses from 0.16.0 to 0.19.0 Bumps [responses](https://github.com/getsentry/responses) from 0.16.0 to 0.19.0. - [Release notes](https://github.com/getsentry/responses/releases) - [Changelog](https://github.com/getsentry/responses/blob/master/CHANGES) - [Commits](https://github.com/getsentry/responses/compare/0.16.0...0.19.0) --- updated-dependencies: - dependency-name: responses dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'requests_cache/backends/sqlite.py')
-rw-r--r--requests_cache/backends/sqlite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/requests_cache/backends/sqlite.py b/requests_cache/backends/sqlite.py
index d2217c9..77e2b46 100644
--- a/requests_cache/backends/sqlite.py
+++ b/requests_cache/backends/sqlite.py
@@ -75,7 +75,7 @@ from pathlib import Path
from tempfile import gettempdir
from typing import Collection, Iterable, Iterator, List, Tuple, Type, Union
-from appdirs import user_cache_dir
+from platformdirs import user_cache_dir
from .._utils import chunkify, get_valid_kwargs
from . import BaseCache, BaseStorage