Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyFV3
Submodule pyFV3 updated 39 files
+2 −2 .github/workflows/create_cache.yaml
+0 −0 .github/workflows/gh_pages_doc.yaml
+0 −4 .github/workflows/translate.yaml
+48 −0 .github/workflows/unit_tests.yaml
+6 −5 .pre-commit-config.yaml
+1 −1 examples/notebook/test_functionality.ipynb
+8 −9 pyfv3/_config.py
+21 −17 pyfv3/dycore_state.py
+52 −49 pyfv3/initialization/analytic_init.py
+1 −1 pyfv3/initialization/test_cases/initialize_baroclinic.py
+2 −2 pyfv3/initialization/test_cases/initialize_rossby.py
+1 −1 pyfv3/initialization/test_cases/initialize_tc.py
+2 −2 pyfv3/stencils/d_sw.py
+4 −8 pyfv3/stencils/delnflux.py
+3 −3 pyfv3/stencils/dyn_core.py
+2 −3 pyfv3/stencils/fillz.py
+7 −4 pyfv3/stencils/fv_dynamics.py
+1 −3 pyfv3/stencils/fvtp2d.py
+2 −1 pyfv3/stencils/map_single.py
+2 −4 pyfv3/stencils/mapn_tracer.py
+1 −1 pyfv3/stencils/remap_profile.py
+3 −5 pyfv3/stencils/remapping.py
+2 −3 pyfv3/stencils/tracer_2d_1l.py
+1 −3 pyfv3/stencils/updatedzd.py
+6 −6 pyfv3/testing/map_single.py
+3 −3 pyfv3/testing/translate_data.py
+6 −5 pyfv3/testing/translate_dyncore.py
+19 −16 pyfv3/testing/translate_fvdynamics.py
+4 −5 pyfv3/testing/validation.py
+11 −10 pyfv3/utils/functional_validation.py
+16 −11 pyfv3/wrappers/geos_wrapper.py
+21 −5 pyproject.toml
+7 −0 tests/data/README.md
+ tests/data/eta79.nc
+0 −0 tests/main/__init__.py
+32 −35 tests/main/test_config_from_yaml.py
+13 −23 tests/mpi/test_doubly_periodic.py
+4 −1 tests/savepoint/translate/translate_cubedtolatlon.py
+8 −28 tests/savepoint/translate/translate_init_case.py
2 changes: 1 addition & 1 deletion pySHiELD
Submodule pySHiELD updated 117 files
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,16 @@ namespace_packages = true
strict_optional = false
warn_unreachable = true

[[tool.mypy.overrides]]
ignore_errors = true
module = [
# We currently can't type stencils
"pyshield.stencils.*",
# Will be fixed with NDSL version 2026.01.00, see
# https://github.com/NOAA-GFDL/NDSL/pull/360
"pyfv3.testing.translate_fvdynamics"
]

[tool.setuptools]
include-package-data = true

Expand Down