diff --git a/pydala/dataset.py b/pydala/dataset.py index 7487b07..668b0a8 100644 --- a/pydala/dataset.py +++ b/pydala/dataset.py @@ -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( diff --git a/pydala/metadata.py b/pydala/metadata.py index c1f8a6c..21e1186 100644 --- a/pydala/metadata.py +++ b/pydala/metadata.py @@ -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( diff --git a/pyproject.toml b/pyproject.toml index 5ef38f6..d51a140 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]