Skip to content

Commit

Permalink
Ignore pytorch-sphinx-theme installation (microsoft#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart authored Jun 24, 2022
1 parent e12a817 commit b9c73df
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ jobs:
pip install -r requirements/style.txt
pip list
- name: Run pyupgrade checks
run: pyupgrade --py37-plus $(find . -name "*.py")
run: pyupgrade --py37-plus $(find . -path ./docs/src -prune -o -name "*.py" -print)
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ instance/

# Sphinx documentation
docs/_build/
docs/src/

# PyBuilder
target/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ color_output = true
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
exclude = "(build|data|dist|logo|logs|output)/"
exclude = "(build|data|dist|docs/src|logo|logs|output)/"

# Strict
warn_unused_configs = true
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ exclude =
logs/,
output/,

# Docs
docs/src/,

# Spack
.spack-env/,

Expand Down

0 comments on commit b9c73df

Please sign in to comment.