Skip to content

Commit

Permalink
Allow SQLAlchemy version up to v1.3 (#147)
Browse files Browse the repository at this point in the history
`piptools.compile` is failing for ETL after [1], because
`amundsendatabuilder` depends on `sqlalchemy>1.2` and airflow depends on
`sqlalchemy<=1.2`.

This change was already made upstream [2], so I think it should be OK.
The changelog looks pretty innocuous [3].

[1] amundsen-io/amundsendatabuilder@b480d00
[2] apache#4227
[3] https://docs.sqlalchemy.org/en/13/changelog/migration_13.html
  • Loading branch information
astahlman committed Aug 14, 2019
1 parent 7458f3c commit a224842
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 @@ -228,7 +228,7 @@ def do_setup():
'requests>=2.5.1, <3',
'setproctitle>=1.1.8, <2',
'sshtunnel>=0.1.4,<0.2',
'sqlalchemy>=1.1.15, <=1.2.0',
'sqlalchemy>=1.1.15, <=1.3.0',
'tabulate>=0.7.5, <0.8.0',
'thrift>=0.9.2',
'tqdm==4.23.4',
Expand Down

0 comments on commit a224842

Please sign in to comment.