From 82422707cb8b4421f3670cc4c16ca60f07dc26d5 Mon Sep 17 00:00:00 2001 From: Oliver Marshall Date: Thu, 17 Dec 2020 17:37:56 +0000 Subject: [PATCH] fix: Address PyAthena version (#429) As seen here: https://github.com/laughingman7743/PyAthena/issues/189 The 2.0.0 version of PyAthena doesn't install SQLAlchemy for some reason This PR fixes that --- databuilder/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databuilder/setup.py b/databuilder/setup.py index 42ac4e9a46..63f20e516b 100644 --- a/databuilder/setup.py +++ b/databuilder/setup.py @@ -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