Skip to content

Commit

Permalink
Bumping version to 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
igorborgest committed Oct 26, 2019
1 parent 29f0d26 commit a729133
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> Utility belt to handle data on AWS.
[![Release](https://img.shields.io/badge/release-0.0.13-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Release](https://img.shields.io/badge/release-0.0.14-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)
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.13"
__version__ = "0.0.14"
__license__ = "Apache License 2.0"
5 changes: 3 additions & 2 deletions awswrangler/emr.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@ def _build_cluster_args(**pars):
}
if pars["spark_jars_path"] is not None:
spark_defaults["Properties"]["spark.jars"] = pars["spark_jars_path"]
for k, v in pars["spark_defaults"].items():
spark_defaults["Properties"][k] = v
if pars["spark_defaults"] is not None:
for k, v in pars["spark_defaults"].items():
spark_defaults["Properties"][k] = v
args["Configurations"].append(spark_defaults)

# Applications
Expand Down

0 comments on commit a729133

Please sign in to comment.