Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend grpcio version requirements range #1033

Merged
merged 1 commit into from
Jun 16, 2022
Merged
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ $ git sumodule update --init

Q2. How to generate python files from milvus-proto?

**Before generating python files, please install requirements in `requirements.txt`**

A2.
```shell
$ make gen_proto
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
build==0.4.0
certifi==2021.5.30
chardet==4.0.0
grpcio==1.37.1
grpcio-testing==1.37.1
grpcio-tools==1.37.1
grpcio>=1.37.1
grpcio-testing>=1.37.1
grpcio-tools>=1.37.1,<=1.43.0
idna==2.10
mmh3>=2.0,<=3.0.0
packaging==20.9
Expand All @@ -28,7 +28,7 @@ sphinxcontrib-qthelp==1.0.2
sphinxcontrib-serializinghtml==1.1.3
sphinxcontrib-napoleon
sphinxcontrib-prettyspecialmethods
pytest==5.3.4
pytest>=5.3.4
pytest-cov==2.8.1
pytest-timeout==1.3.4
pylint==2.4.4
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"grpcio==1.37.1",
"grpcio-tools==1.37.1",
"grpcio>=1.37.1",
"ujson>=2.0.0,<=5.1.0",
"mmh3>=2.0,<=3.0.0",
"pandas==1.1.5; python_version<'3.7'",
Expand Down