Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sdk/python/requirements/py3.10-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ packaging==23.2
# pytest
# snowflake-connector-python
# sphinx
pandas==1.5.3
pandas==2.1.4
# via
# altair
# db-dtypes
Expand Down Expand Up @@ -937,6 +937,8 @@ typing-extensions==4.9.0
# snowflake-connector-python
# sqlalchemy2-stubs
# uvicorn
tzdata==2023.4
# via pandas
tzlocal==5.2
# via
# great-expectations
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ packaging==23.2
# via
# dask
# gunicorn
pandas==1.5.3
pandas==2.2.0
# via
# feast (setup.py)
# pandavro
Expand Down
4 changes: 3 additions & 1 deletion sdk/python/requirements/py3.9-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ packaging==23.2
# pytest
# snowflake-connector-python
# sphinx
pandas==1.5.3
pandas==2.1.4
# via
# altair
# db-dtypes
Expand Down Expand Up @@ -949,6 +949,8 @@ typing-extensions==4.9.0
# sqlalchemy2-stubs
# starlette
# uvicorn
tzdata==2023.4
# via pandas
tzlocal==5.2
# via
# great-expectations
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.9-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ packaging==23.2
# via
# dask
# gunicorn
pandas==1.5.3
pandas==2.2.0
# via
# feast (setup.py)
# pandavro
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@
"jsonschema",
"mmh3",
"numpy>=1.22,<1.25",
"pandas>=1.4.3,<2",
# only accept pandas versions 2.2.0 and above
# for python 3.8, it must be less than 2.0.0
"pandas>=1.4.3,<3,!=2.0.*,!=2.1.*",
# For some reason pandavro higher than 1.5.* only support pandas less than 1.3.
"pandavro~=1.5.0",
# Higher than 4.23.4 seems to cause a seg fault
Expand Down