diff --git a/README.md b/README.md index 397382f..c89268c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Add `--upgrade` option to update existing package to a new version Specify package link in your `requirements.txt`: ```txt -git+https://github.com/gismart/bi-utils@0.16.2#egg=bi-utils-gismart +git+https://github.com/gismart/bi-utils@0.16.3#egg=bi-utils-gismart ``` ### Usage diff --git a/bi_utils/aws/db.py b/bi_utils/aws/db.py index 7b5945a..a81224d 100644 --- a/bi_utils/aws/db.py +++ b/bi_utils/aws/db.py @@ -180,6 +180,7 @@ def upload_data( file_path, partition_cols=partition_cols, coerce_timestamps="us", + allow_truncated_timestamps=True, index=False, ) else: diff --git a/bi_utils/queue_exporter.py b/bi_utils/queue_exporter.py index f4917d1..b203fc9 100644 --- a/bi_utils/queue_exporter.py +++ b/bi_utils/queue_exporter.py @@ -176,6 +176,7 @@ def _export_df( file_path, partition_cols=partition_cols, coerce_timestamps="us", + allow_truncated_timestamps=True, index=False, ) else: diff --git a/setup.py b/setup.py index c8e74cf..b6c1fcf 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setuptools.setup( name="bi-utils-gismart", - version="0.16.2", + version="0.16.3", author="gismart", author_email="info@gismart.com", description="Utils for BI team",