Skip to content

Commit 0049356

Browse files
breno-costaadchia
andauthored
chore: Widen redis requirement to make it easier to install alongside other requirements (#3755)
* chore: wide redis dependency to make it easier to install alongside other requirements Signed-off-by: Breno Costa <brenocosta0901@gmail.com> * update requirements Signed-off-by: Danny C <d.chiao@gmail.com> --------- Signed-off-by: Breno Costa <brenocosta0901@gmail.com> Signed-off-by: Danny C <d.chiao@gmail.com> Co-authored-by: Danny C <d.chiao@gmail.com>
1 parent 6474b4b commit 0049356

File tree

4 files changed

+8
-23
lines changed

4 files changed

+8
-23
lines changed

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ decorator==5.1.1
180180
# ipython
181181
defusedxml==0.7.1
182182
# via nbconvert
183-
deprecated==1.2.14
184-
# via redis
185183
deprecation==2.1.0
186184
# via testcontainers
187185
dill==0.3.7
@@ -577,7 +575,6 @@ packaging==23.1
577575
# marshmallow
578576
# nbconvert
579577
# pytest
580-
# redis
581578
# snowflake-connector-python
582579
# sphinx
583580
pandas==1.5.3
@@ -784,7 +781,7 @@ pyzmq==25.1.1
784781
# ipykernel
785782
# jupyter-client
786783
# jupyter-server
787-
redis==4.2.2
784+
redis==4.6.0
788785
# via feast (setup.py)
789786
referencing==0.30.2
790787
# via
@@ -1065,9 +1062,7 @@ wheel==0.41.2
10651062
widgetsnbextension==4.0.8
10661063
# via ipywidgets
10671064
wrapt==1.15.0
1068-
# via
1069-
# deprecated
1070-
# testcontainers
1065+
# via testcontainers
10711066
xmltodict==0.13.0
10721067
# via moto
10731068
yarl==1.9.2

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,6 @@ decorator==5.1.1
184184
# ipython
185185
defusedxml==0.7.1
186186
# via nbconvert
187-
deprecated==1.2.14
188-
# via redis
189187
deprecation==2.1.0
190188
# via testcontainers
191189
dill==0.3.7
@@ -592,7 +590,6 @@ packaging==23.1
592590
# marshmallow
593591
# nbconvert
594592
# pytest
595-
# redis
596593
# snowflake-connector-python
597594
# sphinx
598595
pandas==1.5.3
@@ -802,7 +799,7 @@ pyzmq==25.1.1
802799
# ipykernel
803800
# jupyter-client
804801
# jupyter-server
805-
redis==4.2.2
802+
redis==4.6.0
806803
# via feast (setup.py)
807804
referencing==0.30.2
808805
# via
@@ -1082,9 +1079,7 @@ wheel==0.41.2
10821079
widgetsnbextension==4.0.8
10831080
# via ipywidgets
10841081
wrapt==1.15.0
1085-
# via
1086-
# deprecated
1087-
# testcontainers
1082+
# via testcontainers
10881083
xmltodict==0.13.0
10891084
# via moto
10901085
yarl==1.9.2

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

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,6 @@ decorator==5.1.1
180180
# ipython
181181
defusedxml==0.7.1
182182
# via nbconvert
183-
deprecated==1.2.14
184-
# via redis
185183
deprecation==2.1.0
186184
# via testcontainers
187185
dill==0.3.7
@@ -527,7 +525,7 @@ mypy-extensions==1.0.0
527525
# via
528526
# black
529527
# mypy
530-
mypy-protobuf==3.1
528+
mypy-protobuf==3.1.0
531529
# via feast (setup.py)
532530
mysqlclient==2.2.0
533531
# via feast (setup.py)
@@ -584,7 +582,6 @@ packaging==23.1
584582
# marshmallow
585583
# nbconvert
586584
# pytest
587-
# redis
588585
# snowflake-connector-python
589586
# sphinx
590587
pandas==1.5.3
@@ -791,7 +788,7 @@ pyzmq==25.1.1
791788
# ipykernel
792789
# jupyter-client
793790
# jupyter-server
794-
redis==4.2.2
791+
redis==4.6.0
795792
# via feast (setup.py)
796793
referencing==0.30.2
797794
# via
@@ -1077,9 +1074,7 @@ wheel==0.41.2
10771074
widgetsnbextension==4.0.8
10781075
# via ipywidgets
10791076
wrapt==1.15.0
1080-
# via
1081-
# deprecated
1082-
# testcontainers
1077+
# via testcontainers
10831078
xmltodict==0.13.0
10841079
# via moto
10851080
yarl==1.9.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
]
9393

9494
REDIS_REQUIRED = [
95-
"redis==4.2.2",
95+
"redis>=4.2.2,<5",
9696
"hiredis>=2.0.0,<3",
9797
]
9898

0 commit comments

Comments
 (0)