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

Fix the protobuf version to solve incompatibility #738

Merged
merged 1 commit into from
Jul 28, 2022
Merged
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
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import datetime
import os
import shutil
import datetime

from setuptools import find_packages, setup

Expand Down Expand Up @@ -73,15 +73,17 @@
long_description_content_type="text/markdown",
python_requires=">=3.7,<3.9",
install_requires=[
"PyYAML",
"psutil",
"PyYAML==6.0",
"psutil==5.9.1",
"numpy",
"grpcio",
"google-api-python-client",
"grpcio==1.46.3",
"protobuf==3.20.1",
"google-api-python-client==2.49.0",
"cryptography>=36.0.0",
"Flask==2.1.2",
"gunicorn==20.1.0",
"six>=1.15.0",
"tenseal==0.3.0",
"gunicorn",
"flask",
],
entry_points={
"console_scripts": [
Expand Down