We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e60c41 commit 921979cCopy full SHA for 921979c
pydra/utils/__init__.py
@@ -1,6 +1,6 @@
1
from pathlib import Path
2
import platformdirs
3
-from pydra import __version__
+from pydra._version import __version__
4
5
user_cache_dir = Path(
6
platformdirs.user_cache_dir(
pydra/utils/hash.py
@@ -98,7 +98,7 @@ def location_default(cls):
98
try:
99
location = os.environ[cls.LOCATION_ENV_VAR]
100
except KeyError:
101
- location = user_cache_dir / "hash_cache"
+ location = user_cache_dir / "hashes"
102
return location
103
104
# the default needs to be an instance method
0 commit comments