Skip to content

Commit

Permalink
S700705: Compile protos before creating wheels (#103)
Browse files Browse the repository at this point in the history
* S700705: Compile protos before creating wheels

* Sync grpc versions with core package

* try with hard coding to 1.44

setup.py doesn't seem to resolve dependencies well
  • Loading branch information
hiro727 authored Sep 6, 2022
1 parent 9b3f5f6 commit 57d1299
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ jobs:
- name: Build API
run: |
cd protos
python setup.py develop
python setup.py bdist_wheel
cp -a dist/. ../dist/
- name: Build Core
Expand Down
2 changes: 1 addition & 1 deletion protos/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup
from setuptools.command.develop import develop

install_requires = ["grpcio>=1.46.0", "grpcio-tools>=1.46.0", "protobuf>=3.20,<4"]
install_requires = ["grpcio==1.44.0", "grpcio-tools==1.44.0", "protobuf>=3.20,<4"]

# Get the long description from the README file
HERE = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit 57d1299

Please sign in to comment.