Skip to content

Commit

Permalink
fix: Address PyAthena version (amundsen-io#429)
Browse files Browse the repository at this point in the history
As seen here: laughingman7743/PyAthena#189
The 2.0.0 version of PyAthena doesn't install SQLAlchemy for some reason
This PR fixes that
  • Loading branch information
Akeboshiwind authored and Hans Adriaans committed Jun 30, 2022
1 parent fc0d39a commit 8242270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databuilder/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
'snowflake-sqlalchemy'
]

athena = ['PyAthena[SQLAlchemy]>=1.0.0']
athena = ['PyAthena[SQLAlchemy]>=1.0.0, <2.0.0']

# Python API client for google
# License: Apache Software License
Expand Down

0 comments on commit 8242270

Please sign in to comment.