Skip to content

Commit 626fecb

Browse files
committed
Bump version to 0.9.6.5; remove debug print statements and add write_file and write_files methods to AbstractFileSystem
1 parent 22e49cc commit 626fecb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A simple workflow framework. Hamilton + APScheduler = FlowerPower
44
authors = [{ name = "Volker L.", email = "[email protected]" }]
55
readme = "README.md"
66
requires-python = ">= 3.11"
7-
version = "0.9.6.4"
7+
version = "0.9.6.5"
88
keywords = ["hamilton", "workflow", "pipeline", "scheduler", "apscheduler", "dask", "ray"]
99
dependencies = [
1010
"sf-hamilton[visualization]>=1.69.0",

src/flowerpower/filesystem/ext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,14 +499,12 @@ def _read_parquet(
499499
"""
500500
if not include_file_path and concat:
501501
path = path.replace("**", "").replace("*.parquet", "")
502-
print(path)
503502
return pq.read_table(path, filesystem=self, **kwargs)
504503
else:
505504
if isinstance(path, str):
506505
path = path_to_glob(path, format="parquet")
507506
path = self.glob(path)
508507

509-
# print(path)
510508
if isinstance(path, list):
511509
if use_threads:
512510
table = run_parallel(
@@ -1368,5 +1366,7 @@ def write_pydala_dataset(
13681366
AbstractFileSystem.write_parquet = write_parquet
13691367
AbstractFileSystem.write_json = write_json
13701368
AbstractFileSystem.write_csv = write_csv
1369+
AbstractFileSystem.write_file = write_file
1370+
AbstractFileSystem.write_files = write_files
13711371
AbstractFileSystem.write_pyarrow_dataset = write_pyarrow_dataset
13721372
AbstractFileSystem.write_pydala_dataset = write_pydala_dataset

0 commit comments

Comments
 (0)