Skip to content

Commit

Permalink
chore: Widen redis requirement to make it easier to install alongside…
Browse files Browse the repository at this point in the history
… other requirements (feast-dev#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>
  • Loading branch information
breno-costa and adchia committed Sep 7, 2023
1 parent 6474b4b commit 0049356
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 23 deletions.
9 changes: 2 additions & 7 deletions sdk/python/requirements/py3.10-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ decorator==5.1.1
# ipython
defusedxml==0.7.1
# via nbconvert
deprecated==1.2.14
# via redis
deprecation==2.1.0
# via testcontainers
dill==0.3.7
Expand Down Expand Up @@ -577,7 +575,6 @@ packaging==23.1
# marshmallow
# nbconvert
# pytest
# redis
# snowflake-connector-python
# sphinx
pandas==1.5.3
Expand Down Expand Up @@ -784,7 +781,7 @@ pyzmq==25.1.1
# ipykernel
# jupyter-client
# jupyter-server
redis==4.2.2
redis==4.6.0
# via feast (setup.py)
referencing==0.30.2
# via
Expand Down Expand Up @@ -1065,9 +1062,7 @@ wheel==0.41.2
widgetsnbextension==4.0.8
# via ipywidgets
wrapt==1.15.0
# via
# deprecated
# testcontainers
# via testcontainers
xmltodict==0.13.0
# via moto
yarl==1.9.2
Expand Down
9 changes: 2 additions & 7 deletions sdk/python/requirements/py3.8-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ decorator==5.1.1
# ipython
defusedxml==0.7.1
# via nbconvert
deprecated==1.2.14
# via redis
deprecation==2.1.0
# via testcontainers
dill==0.3.7
Expand Down Expand Up @@ -592,7 +590,6 @@ packaging==23.1
# marshmallow
# nbconvert
# pytest
# redis
# snowflake-connector-python
# sphinx
pandas==1.5.3
Expand Down Expand Up @@ -802,7 +799,7 @@ pyzmq==25.1.1
# ipykernel
# jupyter-client
# jupyter-server
redis==4.2.2
redis==4.6.0
# via feast (setup.py)
referencing==0.30.2
# via
Expand Down Expand Up @@ -1082,9 +1079,7 @@ wheel==0.41.2
widgetsnbextension==4.0.8
# via ipywidgets
wrapt==1.15.0
# via
# deprecated
# testcontainers
# via testcontainers
xmltodict==0.13.0
# via moto
yarl==1.9.2
Expand Down
11 changes: 3 additions & 8 deletions sdk/python/requirements/py3.9-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ decorator==5.1.1
# ipython
defusedxml==0.7.1
# via nbconvert
deprecated==1.2.14
# via redis
deprecation==2.1.0
# via testcontainers
dill==0.3.7
Expand Down Expand Up @@ -527,7 +525,7 @@ mypy-extensions==1.0.0
# via
# black
# mypy
mypy-protobuf==3.1
mypy-protobuf==3.1.0
# via feast (setup.py)
mysqlclient==2.2.0
# via feast (setup.py)
Expand Down Expand Up @@ -584,7 +582,6 @@ packaging==23.1
# marshmallow
# nbconvert
# pytest
# redis
# snowflake-connector-python
# sphinx
pandas==1.5.3
Expand Down Expand Up @@ -791,7 +788,7 @@ pyzmq==25.1.1
# ipykernel
# jupyter-client
# jupyter-server
redis==4.2.2
redis==4.6.0
# via feast (setup.py)
referencing==0.30.2
# via
Expand Down Expand Up @@ -1077,9 +1074,7 @@ wheel==0.41.2
widgetsnbextension==4.0.8
# via ipywidgets
wrapt==1.15.0
# via
# deprecated
# testcontainers
# via testcontainers
xmltodict==0.13.0
# via moto
yarl==1.9.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
]

REDIS_REQUIRED = [
"redis==4.2.2",
"redis>=4.2.2,<5",
"hiredis>=2.0.0,<3",
]

Expand Down

0 comments on commit 0049356

Please sign in to comment.