Skip to content

Commit

Permalink
Update cache storage handling in dataset and metadata classes, and bu…
Browse files Browse the repository at this point in the history
…mp version to 0.9.3.3
  • Loading branch information
legout committed Dec 9, 2024
1 parent 2a563d6 commit 18cd890
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pydala/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(
cache_storage = fs_kwargs.pop(
"cache_storage", tempfile.mkdtemp(prefix="pydala2_")
)
cache_storage = os.path.join(cache_storage, path)
# cache_storage = os.path.join(cache_storage, path)
else:
cache_storage = None
self._filesystem = FileSystem(
Expand Down
2 changes: 1 addition & 1 deletion pydala/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def __init__(
cache_storage = fs_kwargs.pop(
"cache_storage", tempfile.mkdtemp(prefix="pydala2_")
)
cache_storage = os.path.join(cache_storage, path)
# cache_storage = os.path.join(cache_storage, path)
else:
cache_storage = None
self._filesystem = FileSystem(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ name = "pydala2"
readme = "README.md"
repository = "https://github.com/legout/pydala2"
requires-python = ">= 3.10"
version = "0.9.3.2"
version = "0.9.3.3"

[project.optional-dependencies]
legacy = ["polars-lts-cpu>=0.20.4"]
Expand Down

0 comments on commit 18cd890

Please sign in to comment.