Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
518 B
22 lines
518 B
# .readthedocs.yml |
|
# Read the Docs configuration file |
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details |
|
|
|
# Required |
|
version: 2 |
|
|
|
sphinx: |
|
configuration: python/docs/conf.py |
|
fail_on_warning: false |
|
|
|
# Setup build requirements for docs. |
|
# Use conda so that we can install the latest libprotobuf package without |
|
# having to build from scratch just for docs builds. |
|
conda: |
|
environment: python/docs/environment.yml |
|
|
|
python: |
|
version: 3.7 |
|
install: |
|
- method: setuptools |
|
path: python
|
|
|