Skip to content

Commit cb2e590

Browse files
authored
Merge branch 'master' into patch-1
2 parents 7c5c964 + 5ef591d commit cb2e590

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.flake8

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[flake8]
22
max-line-length = 88
33
max-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,
69
extend-exclude = */site-packages/*

.readthedocs.yaml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
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
61
version: 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+
98
sphinx:
109
fail_on_warning: true
1110

12-
# Optionally set the version of Python and requirements required to build your docs
1311
python:
14-
version: '3.8'
1512
install:
1613
- requirements: docs/requirements.txt

0 commit comments

Comments
 (0)