Skip to content

Commit

Permalink
Bumping version to 0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
igorborgest committed Oct 21, 2019
1 parent 632643a commit f0aaa0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

> Utility belt to handle data on AWS.
[![Release](https://img.shields.io/badge/release-0.0.10-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Release](https://img.shields.io/badge/release-0.0.11-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Downloads](https://img.shields.io/pypi/dm/awswrangler.svg)](https://pypi.org/project/awswrangler/)
[![Python Version](https://img.shields.io/badge/python-3.6%20%7C%203.7-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Documentation Status](https://readthedocs.org/projects/aws-data-wrangler/badge/?version=latest)](https://aws-data-wrangler.readthedocs.io/en/latest/?badge=latest)
[![Coverage](https://img.shields.io/badge/coverage-87%25-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Coverage](https://img.shields.io/badge/coverage-88%25-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/awslabs/aws-data-wrangler.svg)](http://isitmaintained.com/project/awslabs/aws-data-wrangler "Average time to resolve an issue")
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Expand Down
2 changes: 1 addition & 1 deletion awswrangler/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__title__ = "awswrangler"
__description__ = "Utility belt to handle data on AWS."
__version__ = "0.0.10"
__version__ = "0.0.11"
__license__ = "Apache License 2.0"
10 changes: 3 additions & 7 deletions testing/test_awswrangler/test_redshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,9 @@ def test_to_redshift_pandas_cast(session, bucket, redshift_parameters):
"name": ["name1", "name2", "name3"],
"foo": [None, None, None],
"boo": [date(2020, 1, 1), None, None],
"bar": [datetime(2021, 1, 1), None, None]})
schema = {
"id": "BIGINT",
"name": "VARCHAR",
"foo": "REAL",
"boo": "DATE",
"bar": "TIMESTAMP"}
"bar": [datetime(2021, 1, 1), None, None]
})
schema = {"id": "BIGINT", "name": "VARCHAR", "foo": "REAL", "boo": "DATE", "bar": "TIMESTAMP"}
con = Redshift.generate_connection(
database="test",
host=redshift_parameters.get("RedshiftAddress"),
Expand Down

0 comments on commit f0aaa0d

Please sign in to comment.