Skip to content

Commit 057ee5a

Browse files
committed
fix: Recompile ci deps py38 py39
Signed-off-by: Hai Nguyen <quanghai.ng1512@gmail.com>
1 parent e3f46cb commit 057ee5a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

sdk/python/requirements/py3.8-ci-requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,9 @@ httplib2==0.22.0
316316
httptools==0.6.1
317317
# via uvicorn
318318
httpx==0.26.0
319-
# via feast (setup.py)
319+
# via
320+
# feast (setup.py)
321+
# jupyterlab
320322
identify==2.5.33
321323
# via pre-commit
322324
idna==3.6
@@ -425,7 +427,7 @@ jupyter-server==2.12.5
425427
# notebook-shim
426428
jupyter-server-terminals==0.5.2
427429
# via jupyter-server
428-
jupyterlab==4.0.12
430+
jupyterlab==4.1.0
429431
# via notebook
430432
jupyterlab-pygments==0.3.0
431433
# via nbconvert
@@ -466,7 +468,7 @@ mock==2.0.0
466468
# via feast (setup.py)
467469
moreorless==0.4.0
468470
# via bowler
469-
moto==5.0.0
471+
moto==4.2.14
470472
# via feast (setup.py)
471473
msal==1.26.0
472474
# via
@@ -542,7 +544,7 @@ packaging==23.2
542544
# pytest
543545
# snowflake-connector-python
544546
# sphinx
545-
pandas==2.0.3
547+
pandas==1.5.3
546548
# via
547549
# altair
548550
# db-dtypes
@@ -961,8 +963,6 @@ typing-extensions==4.9.0
961963
# sqlalchemy2-stubs
962964
# starlette
963965
# uvicorn
964-
tzdata==2023.4
965-
# via pandas
966966
tzlocal==5.2
967967
# via
968968
# great-expectations

sdk/python/requirements/py3.8-requirements.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fastavro==1.9.3
5050
# pandavro
5151
fissix==21.11.13
5252
# via bowler
53-
fsspec==2023.12.2
53+
fsspec==2024.2.0
5454
# via dask
5555
greenlet==3.0.3
5656
# via sqlalchemy
@@ -122,7 +122,7 @@ packaging==23.2
122122
# via
123123
# dask
124124
# gunicorn
125-
pandas==2.0.3
125+
pandas==1.5.3
126126
# via
127127
# feast (setup.py)
128128
# pandavro
@@ -214,8 +214,6 @@ typing-extensions==4.9.0
214214
# sqlalchemy2-stubs
215215
# starlette
216216
# uvicorn
217-
tzdata==2023.4
218-
# via pandas
219217
urllib3==2.2.0
220218
# via requests
221219
uvicorn[standard]==0.27.0.post1

sdk/python/requirements/py3.9-ci-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ mock==2.0.0
457457
# via feast (setup.py)
458458
moreorless==0.4.0
459459
# via bowler
460-
moto==5.0.0
460+
moto==4.2.14
461461
# via feast (setup.py)
462462
msal==1.26.0
463463
# via

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@
5454
"jsonschema",
5555
"mmh3",
5656
"numpy>=1.22,<1.25",
57-
"pandas>=1.4.3,<3",
57+
# only accept pandas versions 2.2.0 and above
58+
# for python 3.8, it must be less than 2.0.0
59+
"pandas>=1.4.3,<3,!=2.0.*,!=2.1.*",
5860
# For some reason pandavro higher than 1.5.* only support pandas less than 1.3.
5961
"pandavro~=1.5.0",
6062
# Higher than 4.23.4 seems to cause a seg fault

0 commit comments

Comments
 (0)