https://github.com/google/protobuf
Raw File
Tip revision: 4773327787aae78c713a7f2c4dcbf7cf90add456 authored by Hong Shin on 14 November 2023, 17:19:29 UTC
cleanup whitespace in message.cc
Tip revision: 4773327
.readthedocs.yml
# .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
back to top