We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
suggestion, to upgrade requirements.txt packages of grpcio and protobuf
grpcio
protobuf
grpcio==1.36.1 protobuf==3.15.6
why?
add support for python 3.9+
tested locally
git clone https://github.com/cisco-ie/ios-xr-grpc-python.git (modify requirements.txt) pip3 install -e . Defaulting to user installation because normal site-packages is not writeable Obtaining file:///workspaces/cisco-devnet-quiz/classroom/solved/model-driven_programmability_stack/grpc/ios-xr-grpc-python Collecting grpcio==1.36.1 Using cached grpcio-1.36.1-cp39-cp39-manylinux2014_x86_64.whl (4.1 MB) Requirement already satisfied: six>=1.5.2 in /home/vscode/.local/lib/python3.9/site-packages (from grpcio==1.36.1->iosxr-grpc==1.3) (1.15.0) Collecting protobuf==3.15.6 Using cached protobuf-3.15.6-cp39-cp39-manylinux1_x86_64.whl (1.0 MB) Installing collected packages: protobuf, grpcio, iosxr-grpc Running setup.py develop for iosxr-grpc Successfully installed grpcio-1.36.1 iosxr-grpc protobuf-3.15.6
setup.py also needs to be updated for pypi
setup.py
from setuptools import setup setup(name='iosxr_grpc', version='1.3', description='gRPC library for IOS-XR > 6.1.1', url='https://github.com/cisco-grpc-connection-libs/ios-xr-grpc-python', author='Karthik Kumaravel', authoer_email='srirudrankumaravel@gmail.com', licencse='Apache 2.0', packages=['iosxr_grpc'], install_requires=[ 'grpcio==1.36.1', 'protobuf==3.15.6', ], zip_safe=False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
suggestion, to upgrade requirements.txt packages of
grpcio
andprotobuf
why?
add support for python 3.9+
tested locally
setup.py
also needs to be updated for pypiThe text was updated successfully, but these errors were encountered: