Skip to content

Commit

Permalink
Merge pull request #191 from laughingman7743/#189
Browse files Browse the repository at this point in the history
Convert extras names to lowercase (fix: #189)
  • Loading branch information
laughingman7743 authored Dec 25, 2020
2 parents 68a3769 + 2b63024 commit 6828a2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyathena/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
if TYPE_CHECKING:
from pyathena.connection import Connection

__version__: str = "2.0.0"
__version__: str = "2.0.1"

# Globals https://www.python.org/dev/peps/pep-0249/#globals
apilevel: str = "2.0"
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "PyAthena"
version = "2.0.0" # https://github.com/laughingman7743/PyAthena/blob/master/pyathena/__init__.py#L7
version = "2.0.1" # https://github.com/laughingman7743/PyAthena/blob/master/pyathena/__init__.py#L7
description = "Python DB API 2.0 (PEP 249) client for Amazon Athena"
license = "MIT"
classifiers = [
Expand Down Expand Up @@ -44,7 +44,7 @@ wheel = "*"
twine = "*"
pandas = ">=1.0.0"
pyarrow = ">=1.0.0"
SQLAlchemy = ">=1.0.0, <2.0.0"
sqlalchemy = ">=1.0.0, <2.0.0"
mypy = "*"
pytest = ">=3.5"
pytest-cov = "*"
Expand All @@ -56,8 +56,8 @@ pytest-mypy = "*"
codecov = "*"

[tool.poetry.extras]
Pandas = ["pandas", "pyarrow"]
SQLAlchemy = ["sqlalchemy"]
pandas = ["pandas", "pyarrow"]
sqlalchemy = ["sqlalchemy"]

[tool.poetry.plugins."sqlalchemy.dialects"]
"awsathena.rest" = "pyathena.sqlalchemy_athena:AthenaDialect"
Expand Down

0 comments on commit 6828a2e

Please sign in to comment.