mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
c5d57c03ee
* Replace protobuf 2.6.1 with 3.21.8 * Update/add protobuf libs * Add CS2 protos * Remove old csgo/dota protos * Add versioned protoc bin * Comment out Valve's `schema` define for now * Use ENetworkDisconnectionReason * Fix-up `offsetof` to avoid errors on some Clang versions
23 lines
518 B
YAML
23 lines
518 B
YAML
# .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
|