diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 0e0b269..3543a9b 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/pyproject.toml b/pyproject.toml index 33da1f5..1382953 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -187,9 +187,11 @@ ignore = [ unfixable = [ # "F401", # Don't touch unused imports ] +exclude = ["__init__.py"] [tool.ruff.format] quote-style = "single" # be more like black +exclude = ["__init__.py", "_version.py"] [tool.ruff.lint.isort] known-first-party = ["pytestdornech"]