Skip to content

Commit

Permalink
Remove pandas upper limit now that SQLA is 1.4+
Browse files Browse the repository at this point in the history
  • Loading branch information
dstandish committed Mar 21, 2022
1 parent 71c980a commit 75b44a2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,7 @@ def write_version(filename: str = os.path.join(*[my_dir, "airflow", "git_version
file.write(text)


# We limit Pandas to <1.4 because Pandas 1.4 requires SQLAlchemy 1.4 which
# We should remove the limits as soon as Flask App Builder releases version 3.4.4
# Release candidate is there: https://pypi.org/project/Flask-AppBuilder/3.4.4rc1/
# TODO: remove it when we fix all SQLAlchemy 1.4 problems
pandas_requirement = 'pandas>=0.17.1, <1.4'
pandas_requirement = 'pandas>=0.17.1'

# 'Start dependencies group' and 'Start dependencies group' are mark for ./scripts/ci/check_order_setup.py
# If you change this mark you should also change ./scripts/ci/check_order_setup.py
Expand Down

0 comments on commit 75b44a2

Please sign in to comment.