summaryrefslogtreecommitdiff
path: root/tests/integration
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 /tests/integration
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 'tests/integration')
-rw-r--r--tests/integration/test_filesystem.py2
-rw-r--r--tests/integration/test_sqlite.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/test_filesystem.py b/tests/integration/test_filesystem.py
index b651186..1b81dff 100644
--- a/tests/integration/test_filesystem.py
+++ b/tests/integration/test_filesystem.py
@@ -2,7 +2,7 @@ from shutil import rmtree
from tempfile import gettempdir
import pytest
-from appdirs import user_cache_dir
+from platformdirs import user_cache_dir
from requests_cache.backends import FileCache, FileDict
from requests_cache.serializers import SERIALIZERS, SerializerPipeline
diff --git a/tests/integration/test_sqlite.py b/tests/integration/test_sqlite.py
index 1840a78..391d46b 100644
--- a/tests/integration/test_sqlite.py
+++ b/tests/integration/test_sqlite.py
@@ -5,7 +5,7 @@ from threading import Thread
from unittest.mock import patch
import pytest
-from appdirs import user_cache_dir
+from platformdirs import user_cache_dir
from requests_cache.backends.base import BaseCache
from requests_cache.backends.sqlite import MEMORY_URI, SQLiteCache, SQLiteDict, SQLitePickleDict