Skip to content

Commit ee33dcc

Browse files
committed
Bumping version to 1.0.0
1 parent 1ab430f commit ee33dcc

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ df = wr.athena.read_sql_query("SELECT * FROM my_table", database="my_db")
7070
- [AWS Glue Catalog](https://aws-data-wrangler.readthedocs.io/en/latest/api.html#aws-glue-catalog)
7171
- [Amazon Athena](https://aws-data-wrangler.readthedocs.io/en/latest/api.html#amazon-athena)
7272
- [Databases (Redshift, PostgreSQL, MySQL)](https://aws-data-wrangler.readthedocs.io/en/latest/api.html#databases-redshift-postgresql-mysql)
73-
- [EMR](https://aws-data-wrangler.readthedocs.io/en/latest/api.html#emr)
73+
- [EMR Cluster](https://aws-data-wrangler.readthedocs.io/en/latest/api.html#emr-cluster)
7474
- [CloudWatch Logs](https://aws-data-wrangler.readthedocs.io/en/latest/api.html#cloudwatch-logs)
7575
- [**License**](https://github.com/awslabs/aws-data-wrangler/blob/master/LICENSE)
7676
- [**Contributing**](https://github.com/awslabs/aws-data-wrangler/blob/master/CONTRIBUTING.md)

awswrangler/_utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ def ensure_session(session: Optional[boto3.Session] = None) -> boto3.Session:
2424
def client(service_name: str, session: Optional[boto3.Session] = None) -> boto3.client:
2525
"""Create a valid boto3.client."""
2626
return ensure_session(session=session).client(
27-
service_name=service_name,
28-
use_ssl=True,
29-
config=botocore.config.Config(retries={"max_attempts": 15}),
27+
service_name=service_name, use_ssl=True, config=botocore.config.Config(retries={"max_attempts": 15})
3028
)
3129

3230

building/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ ADD requirements-dev.txt /root/
1717
RUN pip3 install -r /root/requirements-dev.txt
1818
RUN rm -rf /root/requirements-dev.txt
1919

20-
RUN pip3 install boto3==1.12.22 botocore==1.15.22
20+
RUN pip3 install boto3==1.12.22 botocore==1.15.22 awscli==1.18.22
2121

2222
ENTRYPOINT ["/bin/sh"]

building/build-glue-egg.sh renamed to building/build-egg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
set -e
2+
set -ex
33

44
pushd ..
55
rm -rf *.egg-info build dist/*.egg
File renamed without changes.

docs/source/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ SageMaker kernels (`Reference <https://github.com/aws-samples/amazon-sagemaker-n
8787
done
8888
EOF
8989
90-
EMR
91-
---
90+
EMR Cluster
91+
-----------
9292
9393
Even not being a distributed library,
9494
AWS Data Wrangler could be a good helper to

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pytest~=5.4.1
1010
pytest-cov~=2.8.1
1111
pytest-xdist~=1.31.0
1212
scikit-learn~=0.22.1
13-
awscli~=1.18.39
13+
awscli>=1.18.22
1414
cfn-lint~=0.29.4
1515
twine~=3.1.1
1616
wheel~=0.34.2

tutorials/01 - Introduction.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
" - [AWS Glue Wheel](https://aws-data-wrangler.readthedocs.io/en/latest/install.html#aws-glue-wheel)\n",
3737
" - [Amazon SageMaker Notebook](https://aws-data-wrangler.readthedocs.io/en/latest/install.html#amazon-sagemaker-notebook)\n",
3838
" - [Amazon SageMaker Notebook Lifecycle](https://aws-data-wrangler.readthedocs.io/en/latest/install.html#amazon-sagemaker-notebook-lifecycle)\n",
39-
" - [EMR](https://aws-data-wrangler.readthedocs.io/en/latest/install.html#emr)\n",
39+
" - [EMR Cluster](https://aws-data-wrangler.readthedocs.io/en/latest/install.html#emr-cluster)\n",
4040
" - [From source](https://aws-data-wrangler.readthedocs.io/en/latest/install.html#from-source)\n",
4141
"\n",
4242
"Some good practices for most of the above methods are:\n",
@@ -111,4 +111,4 @@
111111
},
112112
"nbformat": 4,
113113
"nbformat_minor": 4
114-
}
114+
}

0 commit comments

Comments
 (0)