From 9707292866afa1af3fdbb9c2929f7723158da186 Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Sun, 12 Apr 2026 12:59:29 +0200 Subject: [PATCH 1/2] docs: add ICAR link for Fortran implementation of MPDATA --- docs/markdown/pympdata_landing.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/markdown/pympdata_landing.md b/docs/markdown/pympdata_landing.md index 16e90bd5..572ea15d 100644 --- a/docs/markdown/pympdata_landing.md +++ b/docs/markdown/pympdata_landing.md @@ -586,6 +586,8 @@ See [README.md](https://github.com/open-atmos/PyMPDATA/tree/main/README.md). https://github.com/RinceWND/extPOM/blob/master/pom/solver.f - TourOfJulia (Julia): https://github.com/themantra108/TourOfJulia.jl/blob/master/06b_smolarkiewicz.jl +- ICAR (Fortran): + https://github.com/NCAR/icar/blob/main/src/physics/adv_mpdata.f90 # Other Python packages for solving hyperbolic transport equations From 5f73d2e802438063b21e65dfcc00d3229558e2de Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Mon, 13 Apr 2026 11:40:21 +0200 Subject: [PATCH 2/2] remove pillow version constraint in extras_require --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f1e309f9..cb0581a9 100644 --- a/setup.py +++ b/setup.py @@ -52,8 +52,7 @@ def get_long_description(): extras_require={ "tests": [ "PyMPDATA-examples", - "pillow" - + ("<11.3.0" if CI else ""), # until matplotlib fixes deprecation errors + "pillow", "matplotlib" + (">=3.2.2" if CI else ""), "scipy" + (