From b77f4ce5bc560d3e59f803598446579134418ef2 Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Tue, 31 Mar 2026 09:34:16 +0200 Subject: [PATCH 1/4] bump partmc (switching back to master branch) --- gitmodules/partmc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitmodules/partmc b/gitmodules/partmc index 8598a21e..e6356e77 160000 --- a/gitmodules/partmc +++ b/gitmodules/partmc @@ -1 +1 @@ -Subproject commit 8598a21e8a764b7eda312821dbabed9fe82cff7f +Subproject commit e6356e7739f0aa45d33ef4b07b3a701f79c4305d From fe9d0730a2ec153362467f8b41a972ecd9c0075c Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Tue, 31 Mar 2026 07:32:21 -0500 Subject: [PATCH 2/4] fix freezing rate --- tests/test_run_part.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_run_part.py b/tests/test_run_part.py index 6bc0656e..8ce5d01e 100644 --- a/tests/test_run_part.py +++ b/tests/test_run_part.py @@ -252,7 +252,7 @@ def test_run_part_do_freezing(common_args, tmp_path, scheme): "t_max": 3600, "do_immersion_freezing": True, "immersion_freezing_scheme": scheme, - "freezing_rate": -1e-4, + "freezing_rate": 1e-4, } ) else: From da4d97bc290b40799e6802c5ca004fd4686ac247 Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Tue, 31 Mar 2026 12:50:51 -0500 Subject: [PATCH 3/4] bump checkoutv2 to v4 in pylint --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 555cbef3..8302bdd2 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: recursive - uses: actions/setup-python@v2 From 30da63d54f22678c7d66d413a67834eeb4543c7c Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Tue, 31 Mar 2026 15:11:50 -0500 Subject: [PATCH 4/4] add fetch-depth to pylint workflow to fix version issue --- .github/workflows/pylint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 8302bdd2..6738e466 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -15,6 +15,7 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive + fetch-depth: 0 - uses: actions/setup-python@v2 with: python-version: 3.9