Skip to content

Commit

Permalink
Refactor imports in dataset, filesystem, and metadata modules; update…
Browse files Browse the repository at this point in the history
… version to 0.9.1.3 in pyproject.toml
  • Loading branch information
legout committed Dec 4, 2024
1 parent f8fca4e commit 2bef87b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions pydala/dataset.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import datetime as dt
import os
import re
import tempfile
import typing as t

import duckdb as _duckdb
Expand Down
1 change: 0 additions & 1 deletion pydala/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
from fsspec import AbstractFileSystem, filesystem
from fsspec.implementations.cache_mapper import AbstractCacheMapper
from fsspec.implementations.cached import SimpleCacheFileSystem

# from fsspec.implementations import cached as cachedfs
from fsspec.implementations.dirfs import DirFileSystem
from loguru import logger
Expand Down
4 changes: 2 additions & 2 deletions pydala/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
import os
import pickle
import re
from collections import defaultdict
import tempfile
from collections import defaultdict

import duckdb
import pyarrow as pa
import pyarrow.fs as pfs
import pyarrow.parquet as pq
from fsspec import AbstractFileSystem

from .filesystem import FileSystem, clear_cache

# from .helpers.metadata import collect_parquet_metadata # , remove_from_metadata
from .helpers.misc import get_partitions_from_path, run_parallel
from .schema import repair_schema, unify_schemas
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.1.2"
version = "0.9.1.3"

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

0 comments on commit 2bef87b

Please sign in to comment.