Skip to content

Commit

Permalink
Bumping version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
igorborgest committed Dec 22, 2020
1 parent cb3ad18 commit c241095
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

> An [AWS Professional Service](https://aws.amazon.com/professional-services/) open source initiative | [email protected]
[![Release](https://img.shields.io/badge/release-2.1.0-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![Release](https://img.shields.io/badge/release-2.2.0-brightgreen.svg)](https://pypi.org/project/awswrangler/)
[![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)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![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/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

__title__: str = "awswrangler"
__description__: str = "Pandas on AWS."
__version__: str = "2.1.0"
__version__: str = "2.2.0"
__license__: str = "Apache License 2.0"
2 changes: 1 addition & 1 deletion tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def test_metadata():
assert wr.__version__ == "2.1.0"
assert wr.__version__ == "2.2.0"
assert wr.__title__ == "awswrangler"
assert wr.__description__ == "Pandas on AWS."
assert wr.__license__ == "Apache License 2.0"
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ deps =
moto==1.3.16
s3fs==0.4.2
commands =
pytest -n 32 --timeout=300 tests
pytest -n 16 --timeout=300 tests

[testenv:py38]
passenv = AWS_PROFILE AWS_DEFAULT_REGION AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY
deps =
{[testenv]deps}
pytest-cov==2.10.1
commands =
pytest -n 32 --timeout=300 --cov=awswrangler tests
pytest -n 16 --timeout=300 --cov=awswrangler tests

0 comments on commit c241095

Please sign in to comment.