Skip to content

Commit 69f05fc

Browse files
authored
Merge branch 'main' into fix/issue-2965-bool-config
2 parents 2c757db + 4bb8afc commit 69f05fc

File tree

4 files changed

+274
-268
lines changed

4 files changed

+274
-268
lines changed

awswrangler/s3/_write_text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def to_csv( # noqa: PLR0912,PLR0915
582582
"catalog_table_input": catalog_table_input,
583583
"catalog_id": catalog_id,
584584
"compression": pandas_kwargs.get("compression"),
585-
"skip_header_line_count": True if header else None,
585+
"skip_header_line_count": 1 if header else None,
586586
"serde_library": None,
587587
"serde_parameters": None,
588588
}

docs/source/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,11 @@ AWS Glue PySpark Jobs
217217
Go to your Glue PySpark job and create a new *Job parameters* key/value:
218218

219219
* Key: ``--additional-python-modules``
220-
* Value: ``pyarrow==7,awswrangler``
220+
* Value: ``awswrangler``
221221

222222
To install a specific version, set the value for the above Job parameter as follows:
223223

224-
* Value: ``pyarrow==7,pandas==1.5.3,awswrangler==3.9.2b1``
224+
* Value: ``pyarrow==14,pandas==1.5.3,awswrangler==3.9.2b1``
225225

226226
`Official Glue PySpark Reference <https://docs.aws.amazon.com/glue/latest/dg/reduced-start-times-spark-etl-jobs.html#reduced-start-times-new-features>`_
227227

0 commit comments

Comments
 (0)