Skip to content
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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from setuptools import setup

install_requires = [
"appdirs>=1.4.0",
"attrs>=17.2.0",
"cached-property>=1.3.0",
"isodate>=0.5.4",
"lxml>=4.6.0",
"platformdirs>=1.4.0",
"requests>=2.7.0",
"requests-toolbelt>=0.7.1",
"requests-file>=1.5.1",
Expand Down
4 changes: 2 additions & 2 deletions src/zeep/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import typing
from contextlib import contextmanager

import appdirs
import platformdirs
import pytz

# The sqlite3 is not available on Google App Engine so we handle the
Expand Down Expand Up @@ -176,7 +176,7 @@ def _is_expired(value, timeout):


def _get_default_cache_path():
path = appdirs.user_cache_dir("zeep", False)
path = platformdirs.user_cache_dir("zeep", False)
try:
os.makedirs(path)
except OSError as exc:
Expand Down