Skip to content

Commit

Permalink
Update setup.py (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomme authored Nov 24, 2021
1 parent 01710c8 commit 0264f26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


# get this from a separate file
def _dbt_presto_version() -> str:
def _dbt_athena_version() -> str:
_version_path = os.path.join(
this_directory, "dbt", "adapters", "athena", "__version__.py"
)
Expand All @@ -25,7 +25,7 @@ def _dbt_presto_version() -> str:
return match.group(1)


package_version = _dbt_presto_version()
package_version = _dbt_athena_version()
description = """The athena adapter plugin for dbt (data build tool)"""


Expand Down Expand Up @@ -61,5 +61,7 @@ def _dbt_presto_version() -> str:
install_requires=[
"dbt-core==0.21.0",
"pyathena==2.2.0",
"boto3==1.18.12",
"tenacity==6.3.1",
]
)

0 comments on commit 0264f26

Please sign in to comment.