forked from SciTools/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into apidoc_improvements
* upstream/main: Updated environment lockfiles (SciTools#5270) Drop python3.8 support (SciTools#5269) build wheel from sdist, not src (SciTools#5266) Lazy netcdf saves (SciTools#5191) move setup.cfg to pyproject.toml (SciTools#5262) Support Python 3.11 (SciTools#5226) Remove Resolve test workaround (SciTools#5267) add missing whatsnew entry (SciTools#5265)
- Loading branch information
Showing
54 changed files
with
1,880 additions
and
580 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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
[flake8] | ||
# References: | ||
# https://flake8.readthedocs.io/en/latest/user/configuration.html | ||
# https://flake8.readthedocs.io/en/latest/user/error-codes.html | ||
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes | ||
|
||
max-line-length = 80 | ||
max-complexity = 50 | ||
select = C,E,F,W,B,B950 | ||
ignore = | ||
# E203: whitespace before ':' | ||
E203, | ||
# E226: missing whitespace around arithmetic operator | ||
E226, | ||
# E231: missing whitespace after ',', ';', or ':' | ||
E231, | ||
# E402: module level imports on one line | ||
E402, | ||
# E501: line too long | ||
E501, | ||
# E731: do not assign a lambda expression, use a def | ||
E731, | ||
# W503: line break before binary operator | ||
W503, | ||
# W504: line break after binary operator | ||
W504, | ||
exclude = | ||
# | ||
# ignore the following directories | ||
# | ||
.eggs, | ||
build, | ||
docs/src/sphinxext/*, | ||
tools/*, | ||
benchmarks/*, | ||
# | ||
# ignore auto-generated files | ||
# | ||
_ff_cross_refrences.py, | ||
std_names.py, | ||
um_cf_map.py, | ||
# | ||
# ignore third-party files | ||
# | ||
gitwash_dumper.py, | ||
# | ||
# convenience imports | ||
# | ||
lib/iris/common/__init__.py |
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
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
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
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
Oops, something went wrong.