Skip to content

Commit

Permalink
Upgrade grpcio version in python SDK (feast-dev#1508)
Browse files Browse the repository at this point in the history
* Upgrade grpcio version in python SDK

Signed-off-by: szalai1 <szalaipeti.vagyok@gmail.com>

* Set grpcio version requirements to >=1.32.0

Signed-off-by: szalai1 <szalaipeti.vagyok@gmail.com>
  • Loading branch information
Peter Szalai authored and jklegar committed May 12, 2021
1 parent 3201174 commit 75af449
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"fastavro>=0.22.11,<0.23",
"google-api-core>=1.23.0",
"googleapis-common-protos==1.52.*",
"grpcio==1.31.0",
"grpcio>=1.32.0",
"Jinja2>=2.0.0",
"jsonschema",
"mmh3",
Expand Down Expand Up @@ -72,8 +72,8 @@
"flake8",
"black==19.10b0",
"isort>=5",
"grpcio-tools==1.31.0",
"grpcio-testing==1.31.0",
"grpcio-tools>=1.32.0",
"grpcio-testing>=1.32.0",
"mock==2.0.0",
"moto",
"mypy==0.790",
Expand Down Expand Up @@ -205,7 +205,7 @@ def run(self):
],
entry_points={"console_scripts": ["feast=feast.cli:cli"]},
use_scm_version={"root": "../..", "relative_to": __file__, "tag_regex": TAG_REGEX},
setup_requires=["setuptools_scm", "grpcio", "grpcio-tools==1.31.0", "mypy-protobuf", "sphinx"],
setup_requires=["setuptools_scm", "grpcio", "grpcio-tools>=1.32.0", "mypy-protobuf", "sphinx"],
package_data={
"": [
"protos/feast/**/*.proto",
Expand Down

0 comments on commit 75af449

Please sign in to comment.