From e85a46a8cd8a0307114eec7ee8fc87759db5add1 Mon Sep 17 00:00:00 2001 From: Randolph Settgast Date: Thu, 10 Jul 2025 04:08:04 +0200 Subject: [PATCH 1/3] Update pyproject.toml to allow for vtk>=9.4 The current vtk==9.3 requirement is causing the package to fail. We use 9.4.2 in GEOS. --- geos-mesh/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geos-mesh/pyproject.toml b/geos-mesh/pyproject.toml index 8a994b472..5629a6a4d 100644 --- a/geos-mesh/pyproject.toml +++ b/geos-mesh/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ requires-python = ">=3.10" dependencies = [ - "vtk == 9.3", + "vtk >= 9.4", "networkx >= 2.4", "tqdm >= 4.67", "numpy >= 2.2", From f16edccf4ef5b0732681047aecf59dcf1096f4dd Mon Sep 17 00:00:00 2001 From: Randolph Settgast Date: Thu, 10 Jul 2025 04:39:19 +0200 Subject: [PATCH 2/3] Add back missing script geos_ats_process_tests_fails="geos.ats.helpers.process_tests_failures:main" --- geos-ats/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/geos-ats/pyproject.toml b/geos-ats/pyproject.toml index a19c2f1ed..73a7fc9f9 100644 --- a/geos-ats/pyproject.toml +++ b/geos-ats/pyproject.toml @@ -39,6 +39,7 @@ setup_ats_environment = "geos.ats.environment_setup:main" geos_ats_log_check = "geos.ats.helpers.log_check:main" geos_ats_restart_check = "geos.ats.helpers.restart_check:main" geos_ats_curve_check = "geos.ats.helpers.curve_check:main" +geos_ats_process_tests_fails="geos.ats.helpers.process_tests_failures:main" [project.urls] Homepage = "https://github.com/GEOS-DEV/geosPythonPackages" From c31a935834b8bb86fd5efb09fa5690efba328e80 Mon Sep 17 00:00:00 2001 From: Randolph Settgast Date: Thu, 17 Jul 2025 19:11:22 +0200 Subject: [PATCH 3/3] Update pyproject.toml --- geos-mesh/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geos-mesh/pyproject.toml b/geos-mesh/pyproject.toml index 5629a6a4d..c8a3ae122 100644 --- a/geos-mesh/pyproject.toml +++ b/geos-mesh/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ requires-python = ">=3.10" dependencies = [ - "vtk >= 9.4", + "vtk >= 9.3", "networkx >= 2.4", "tqdm >= 4.67", "numpy >= 2.2",