Skip to content

Commit 17c3ca6

Browse files
authored
Merge pull request #184 from awslabs/bumping-1.0.3
Bumping version to 1.0.3
2 parents 8888f8a + 9f244c1 commit 17c3ca6

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ We just released a new major version `1.0` with breaking changes. Please make su
1111

1212
![AWS Data Wrangler](docs/source/_static/logo2.png?raw=true "AWS Data Wrangler")
1313

14-
[![Release](https://img.shields.io/badge/release-1.0.2-brightgreen.svg)](https://pypi.org/project/awswrangler/)
14+
[![Release](https://img.shields.io/badge/release-1.0.3-brightgreen.svg)](https://pypi.org/project/awswrangler/)
1515
[![Python Version](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-brightgreen.svg)](https://anaconda.org/conda-forge/awswrangler)
1616
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1717
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

awswrangler/__metadata__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
__title__ = "awswrangler"
99
__description__ = "Pandas on AWS."
10-
__version__ = "1.0.2"
10+
__version__ = "1.0.3"
1111
__license__ = "Apache License 2.0"

testing/test_awswrangler/test_data_lake.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -978,11 +978,9 @@ def test_parquet_char_length(bucket, database, external_schema):
978978
path = f"s3://{bucket}/test_parquet_char_length/"
979979
table = "test_parquet_char_length"
980980

981-
df = pd.DataFrame({
982-
"id": [1, 2],
983-
"cchar": ["foo", "boo"],
984-
"date": [datetime.date(2020, 1, 1), datetime.date(2020, 1, 2)]
985-
})
981+
df = pd.DataFrame(
982+
{"id": [1, 2], "cchar": ["foo", "boo"], "date": [datetime.date(2020, 1, 1), datetime.date(2020, 1, 2)]}
983+
)
986984
wr.s3.to_parquet(
987985
df=df,
988986
path=path,
@@ -991,7 +989,7 @@ def test_parquet_char_length(bucket, database, external_schema):
991989
table=table,
992990
mode="overwrite",
993991
partition_cols=["date"],
994-
dtype={'cchar': 'char(3)'}
992+
dtype={"cchar": "char(3)"},
995993
)
996994

997995
df2 = wr.s3.read_parquet(path, dataset=True)

testing/test_awswrangler/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def test_metadata():
5-
assert wr.__version__ == "1.0.2"
5+
assert wr.__version__ == "1.0.3"
66
assert wr.__title__ == "awswrangler"
77
assert wr.__description__ == "Pandas on AWS."
88
assert wr.__license__ == "Apache License 2.0"

testing/test_awswrangler/test_moto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import pytest
21
import boto3
32
import moto
3+
import pytest
44

55
import awswrangler as wr
66

7-
from ._utils import get_df_csv, get_df_list, ensure_data_types
7+
from ._utils import ensure_data_types, get_df_csv, get_df_list
88

99

1010
@pytest.fixture(scope="module")

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist = py{37,38,36}
55
deps =
66
pytest
77
pytest-xdist
8+
moto
89
commands = pytest -n 8 testing/test_awswrangler
910

1011
[testenv:py36]

0 commit comments

Comments
 (0)