Skip to content

Commit

Permalink
[AIRFLOW-6584] Pin cassandra driver (apache#7194)
Browse files Browse the repository at this point in the history
3.21.0 release of Cassandra driver
(https://pypi.org/project/cassandra-driver/3.21.0/) broke backwards
compatibility. We need to pin it to 3.20.2
  • Loading branch information
potiuk committed Jan 17, 2020
1 parent c319e81 commit 8ecbcd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def write_version(filename: str = os.path.join(*["airflow", "git_version"])):
'azure-storage-blob<12.0',
]
cassandra = [
'cassandra-driver>=3.13.0',
'cassandra-driver>=3.13.0,<3.21.0',
]
celery = [
'celery~=4.3',
Expand Down

0 comments on commit 8ecbcd7

Please sign in to comment.