-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin style checkers and formatters (#295)
Leaving them unpinned, particularly when we have so many now is going to be a nightmare. Better to have them pinned in the environment.yml and env/requirements-style.txt files and we upgrade them from time to time. Fixes a false-positive from the updated RST linter.
- Loading branch information
Showing
3 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Requirements for checking code style | ||
pathspec | ||
black | ||
isort | ||
flake8 | ||
flake8-bugbear | ||
flake8-builtins | ||
flake8-functions | ||
flake8-mutable | ||
flake8-rst-docstrings | ||
flake8-simplify | ||
flake8-unused-arguments | ||
pep8-naming | ||
black==21.12b0 | ||
isort==5.10.* | ||
flake8==4.0.* | ||
flake8-bugbear==21.11.* | ||
flake8-builtins==1.5.* | ||
flake8-functions==0.0.6 | ||
flake8-mutable==1.2.* | ||
flake8-rst-docstrings==0.2.* | ||
flake8-simplify==0.14.* | ||
flake8-unused-arguments==0.0.9 | ||
pep8-naming==0.12.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters