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 dark_theme
* upstream/main: (61 commits) 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) make help (SciTools#5258) automate pypi manifest checking (SciTools#5259) drop sphinxcontrib-napoleon (SciTools#5263) add missing test result data (SciTools#5260) fix indentation and remove ref to ssstack (SciTools#5256) review actions update .git-blame-ignore-revs adopt codespell Adopt sphinx design (SciTools#5127) Bump scitools/workflows from 2023.04.2 to 2023.04.3 (SciTools#5253) refresh manual pypi publish instructions (SciTools#5252) Updated environment lockfiles (SciTools#5250) ...
- Loading branch information
Showing
753 changed files
with
32,932 additions
and
26,606 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Format: numpy array format (#5235) | ||
c18dcd8dafef0cc7bbbf80dfce66f76a46ce59c5 | ||
|
||
# style: flake8 (#3755) | ||
7c86bc0168684345dc475457b1a77dadc77ce9bb | ||
|
||
# style: black (#3518) | ||
ffcfad475e0593e1e40895453cf1df154e5f6f2c | ||
|
||
# style: isort (#4174) | ||
15bbcc5ac3d539cb6e820148b66e7cf55d91c5d2 | ||
|
||
# style: blacken-docs (#4205) | ||
1572e180243e492d8ff76fa8cdefb82ef6f90415 | ||
|
||
# style: sort-all (#4353) | ||
64705dbc40881233aae45f051d96049150369e53 | ||
|
||
# style: codespell (#5186) | ||
417aa6bbd9b10d25cad7def54d47ef4d718bc38d |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Reference | ||
# - https://github.com/actions/checkout | ||
|
||
name: ci-manifest | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
push: | ||
branches-ignore: | ||
- "auto-update-lockfiles" | ||
- "pre-commit-ci-update-config" | ||
- "dependabot/*" | ||
|
||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
manifest: | ||
name: "check-manifest" | ||
uses: scitools/workflows/.github/workflows/[email protected] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
# Top-level files | ||
include CHANGES COPYING COPYING.LESSER | ||
prune .github | ||
prune benchmarks | ||
prune docs | ||
prune etc | ||
recursive-include lib *.cdl *.cml *.json *.md *.py *.template *.txt *.xml | ||
prune requirements | ||
recursive-include requirements *.txt | ||
prune tools | ||
exclude .flake8 | ||
exclude .git-blame-ignore-revs | ||
exclude .git_archival.txt | ||
exclude .gitattributes | ||
exclude .gitignore | ||
exclude .mailmap | ||
exclude .pre-commit-config.yaml | ||
exclude .readthedocs.yml | ||
exclude CHANGES | ||
exclude codecov.yml | ||
include COPYING | ||
include COPYING.LESSER | ||
exclude Makefile | ||
exclude noxfile.py | ||
|
||
# Files required for conda package management | ||
recursive-include requirements * | ||
|
||
# Files required to build docs | ||
recursive-include docs * | ||
prune docs/src/_build | ||
prune docs/src/generated | ||
prune docs/gallery_tests | ||
|
||
# Files required to build std_names module | ||
include tools/generate_std_names.py | ||
# files required to build iris.std_names module | ||
include etc/cf-standard-name-table.xml | ||
include tools/generate_std_names.py | ||
|
||
global-exclude *.py[cod] | ||
global-exclude __pycache__ |
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,2 +1,2 @@ | ||
lockfiles: | ||
python tools/update_lockfiles.py -o requirements/ci/nox.lock requirements/ci/py*.yml | ||
python tools/update_lockfiles.py -o requirements/locks requirements/py*.yml |
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.