You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to pass storage_options to pandas.to_parquet. Update docs/CHANGELOG (#79)
* build sindex takes args, returns self, cleanup
* Pass storage and engine options, add some typing
* Pass kwargs to _load_parquet_pandas_metadata
* Remove unused import in tests
* Fix argument order for pack_partitions_to_parquet
* Pass storage_options to read_parquet_dask
* Update docstrings for pack_partitions_to_parquet
* Update docstrings for validate_coerce_filesystem
* Pass storage_options to read_parquet_dask
* Update docstrings for read_parquet_dask
* Update CHANGELOG
* Add overwrite option, minor clean up
* Update CHANGELOG
* Implement version dependent pandas to_parquet function
* Update CHANGELOG
* Pass storage_options to read_parquet_dask
* Add pd_to_parquet to __init__
* Upate import statement
* Move import statement
* Minor typing change
* Add __all__, minor cleanup
* Update to_parquet function call
* Update CHANGELOG
* Add engine_kwargs to pd.to_parquet call
Co-authored-by: Brian Larsen <B_R_L@hotmail.com>
* Add engine_kwargs to dask.to_parquet
Co-authored-by: Brian Larsen <B_R_L@hotmail.com>
* Add storage_options to read_parquet
Co-authored-by: Brian Larsen <B_R_L@hotmail.com>
* Add engine_kwargs to read_parquet
Co-authored-by: Brian Larsen <B_R_L@hotmail.com>
* Modify engine_kwargs to pack_partitions_to_parquet
* Update CHANGELOG.md
Co-authored-by: James A. Bednar <jbednar@users.noreply.github.com>
* Update CHANGELOG.md
Co-authored-by: James A. Bednar <jbednar@users.noreply.github.com>
* Fix missing final newline
Co-authored-by: James A. Bednar <jbednar@users.noreply.github.com>
* Modify how fs is handled in to_parquet
* Remove extra whitespace
* Fix return statement indent
* Remove extra whitespace
Co-authored-by: Brian Larsen <B_R_L@hotmail.com>
* Merge holoviz/spatialpandas master into fix/dask_parquet
* Update engine_kwargs formatting
* Move PANDAS_GE_12 into io/parquet.py
Co-authored-by: Brian Larsen <B_R_L@hotmail.com>
Co-authored-by: James A. Bednar <jbednar@users.noreply.github.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,13 @@
1
+
## Version 0.4.3
2
+
3
+
Date: 2021-08-05
4
+
5
+
This release primarily expands the optional arguments that can be passed to `to_parquet_dask`/`read_parquet_dask` ensuring that `storage_options` is successfully passed where needed. It also adds the ability to pass `storage_options` to the `pandas.to_parquet` function (only for pandas > 1.2) and renames any reference to `fname` with `path` to align with the pandas convention.
6
+
7
+
Bug fixes:
8
+
- Update `validate_coerce_filesystem` to pass `storage_options` through. ([#78](https://github.com/holoviz/spatialpandas/pull/78))
9
+
10
+
1
11
## Version 0.4.2
2
12
3
13
This release primarily achieves compatibility with recent releases of Pandas. Many thanks to @Hoxbro for contributing the fixes and @philippjfr for ongoing maintenance of the project.
0 commit comments