AlenkaF commented on PR #38279: URL: https://github.com/apache/arrow/pull/38279#issuecomment-1958886546
Sure! I would suggest to first fix the CI: - rebase the PR. This might solve some failures. - correct the linter error https://github.com/apache/arrow/actions/runs/7939047572/job/21678650717?pr=38279#step:5:823 ``` --- original//arrow/python/pyarrow/_dataset_parquet.pyx +++ fixed//arrow/python/pyarrow/_dataset_parquet.pyx @@ -626,12 +626,12 @@ >>> options = pq.ParquetFileWriteOptions(compression_level=5) >>> pq.write_table(table, "example_compression.parquet", write_options=options) - + def update(self, **kwargs): """ Parameters ---------- - **kwargs : dict + **kwargs: dict """ arrow_fields = { "use_deprecated_int96_timestamps", ``` Regarding the preview docs you can run the command yourself whenever you need. Simply add `@github-actions crossbow submit preview-docs` to the comment, see https://arrow.apache.org/docs/dev/developers/documentation.html#building-a-docs-preview-in-a-pull-request -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
