Skip to content

Commit e373e7e

Browse files
committed
Bumping version to 1.0.1
1 parent 541d5fb commit e373e7e

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

building/build-docs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
set -ex
33

44
pushd ..
5+
rm -rf docs/build docs/source/stubs
56
make -C docs/ html
67
doc8 --ignore D005 docs/source

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@
8383
"navbar_links": [
8484
("What is Data Wrangler?", "what"),
8585
("Install", "install"),
86-
("Tutorials", "https://github.com/awslabs/aws-data-wrangler/tree/latest/tutorials", True),
86+
("Tutorials", "https://github.com/awslabs/aws-data-wrangler/tree/master/tutorials", True),
8787
("API Reference", "api"),
88-
("License", "https://github.com/awslabs/aws-data-wrangler/blob/latest/LICENSE", True),
89-
("Contributing", "https://github.com/awslabs/aws-data-wrangler/blob/latest/CONTRIBUTING.md", True),
88+
("License", "https://github.com/awslabs/aws-data-wrangler/blob/master/LICENSE", True),
89+
("Contributing", "https://github.com/awslabs/aws-data-wrangler/blob/master/CONTRIBUTING.md", True),
9090
("GitHub", "https://github.com/awslabs/aws-data-wrangler", True),
9191
],
9292
# Render the next and previous page links in navbar. (Default: true)

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ pytest-xdist~=1.31.0
1212
scikit-learn~=0.22.1
1313
awscli>=1.18.22
1414
cfn-lint~=0.29.5
15+
cfn-flip~=1.2.2
1516
twine~=3.1.1
1617
wheel~=0.34.2
1718
sphinx~=3.0.1

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ s3fs~=0.4.2
77
psycopg2-binary~=2.8.5
88
pymysql~=0.9.3
99
SQLAlchemy==1.3.13
10-
sqlalchemy-redshift~=0.7.3
10+
sqlalchemy-redshift~=0.7.7

testing/test_awswrangler/test_data_lake.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -520,13 +520,6 @@ def test_catalog(bucket, database):
520520
assert wr.catalog.delete_table_if_exists(database=database, table="test_catalog") is True
521521

522522

523-
def test_metadata():
524-
assert wr.__version__ == "1.0.0"
525-
assert wr.__title__ == "awswrangler"
526-
assert wr.__description__ == "Pandas on AWS."
527-
assert wr.__license__ == "Apache License 2.0"
528-
529-
530523
def test_s3_get_bucket_region(bucket, region):
531524
assert wr.s3.get_bucket_region(bucket=bucket) == region
532525
assert wr.s3.get_bucket_region(bucket=bucket, boto3_session=boto3.Session()) == region
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import awswrangler as wr
2+
3+
4+
def test_metadata():
5+
assert wr.__version__ == "1.0.1"
6+
assert wr.__title__ == "awswrangler"
7+
assert wr.__description__ == "Pandas on AWS."
8+
assert wr.__license__ == "Apache License 2.0"

0 commit comments

Comments
 (0)