Skip to content

Commit

Permalink
Fix CI (#445)
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle King <[email protected]>
  • Loading branch information
hukkin and KyleKing authored Oct 3, 2024
1 parent 782cb22 commit 5ef591d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
7 changes: 5 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[flake8]
max-line-length = 88
max-complexity = 10
# These checks violate PEP8 so let's ignore them
extend-ignore = E203
extend-ignore =
# E203: Whitespace before ':' (violates PEP8 and black style)
E203,
# A005: A module is shadowing a Python builtin module
A005,
extend-exclude = */site-packages/*
13 changes: 5 additions & 8 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
build:
os: 'ubuntu-lts-latest'
tools:
python: '3.11'

sphinx:
fail_on_warning: true

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

0 comments on commit 5ef591d

Please sign in to comment.