G
gillian
23d12875be
Some checks failed
Build Sphinx Docs Set / Build Docs (pull_request) Successful in 22s
Test with tox / Test with tox (3.12) (pull_request) Failing after 17s
Test with tox / Test with tox (3.11) (pull_request) Failing after 30s
Build Project / Build Project (3.12) (pull_request) Successful in 1m5s
Build Project / Build Project (3.11) (pull_request) Successful in 1m7s
- Remove py310 from tox envlist, CI matrix, readthedocs, README badge - Move lint env to run on 3.11 in gh-actions mapping - Fix E501 line-too-long in cusum_annotator, energy_detector, parallel_signal_separator, threshold_qualifier (split error string) - Fix E501 in annotate.py: wrap --sample-rate click.option decorators to black style (one arg per line with trailing comma) - Fix C901 in annotate.py: extract _log_separate_start() helper to reduce separate() complexity from 17 to 14 - Fix separate() signature wrapping to match black style Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
25 lines
728 B
YAML
25 lines
728 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Set the OS, Python version, and other tools you might need
|
|
build:
|
|
os: ubuntu-22.04
|
|
tools:
|
|
python: "3.11"
|
|
jobs:
|
|
post_create_environment:
|
|
# Install poetry
|
|
# https://python-poetry.org/docs/#installing-manually
|
|
- pip install poetry
|
|
post_install:
|
|
# Install dependencies with 'docs' dependency group
|
|
# https://python-poetry.org/docs/managing-dependencies/#dependency-groups
|
|
# VIRTUAL_ENV needs to be set manually for now, see #11150
|
|
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install
|
|
|
|
sphinx:
|
|
configuration: docs/source/conf.py
|