Skip to content

Commit cef004d

Browse files
authored
Remove pandas upper limit now that SQLA is 1.4+ (#22162)
1 parent 31096cc commit cef004d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,7 @@ def write_version(filename: str = os.path.join(*[my_dir, "airflow", "git_version
179179
file.write(text)
180180

181181

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

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

0 commit comments

Comments
 (0)