File: .readthedocs.yml

package info (click to toggle)
python-streamz 0.6.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 824 kB
  • sloc: python: 6,739; sh: 18; makefile: 16
file content (27 lines) | stat: -rw-r--r-- 470 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# .readthedocs.yml
# Read the Docs configuration file

# Details
# - https://docs.readthedocs.com/platform/stable/config-file/v2.html

# Required
version: 2

build:
  os: "ubuntu-24.04"
  tools:
    python: "3.14"

# Build documentation in the docs/source/ directory with Sphinx
sphinx:
  configuration: docs/source/conf.py

python:
  install:

    # Install package.
    - method: pip
      path: .

    # Install Sphinx.
    - requirements: docs/requirements-docs.txt