File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11[flake8]
22max-line-length = 88
33max-complexity = 10
4- # These checks violate PEP8 so let's ignore them
5- extend-ignore = E203
4+ extend-ignore =
5+ # E203: Whitespace before ':' (violates PEP8 and black style)
6+ E203,
7+ # A005: A module is shadowing a Python builtin module
8+ A005,
69extend-exclude = */site-packages/*
Original file line number Diff line number Diff line change 1- # .readthedocs.yaml
2- # Read the Docs configuration file
3- # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4-
5- # Required
61version : 2
72
8- # Build documentation in the docs/ directory with Sphinx
3+ build :
4+ os : ' ubuntu-lts-latest'
5+ tools :
6+ python : ' 3.11'
7+
98sphinx :
109 fail_on_warning : true
1110
12- # Optionally set the version of Python and requirements required to build your docs
1311python :
14- version : ' 3.8'
1512 install :
1613 - requirements : docs/requirements.txt
You can’t perform that action at this time.
0 commit comments