From 938f488bc8587f2f3b5511fd085e2c16aa8ce7a8 Mon Sep 17 00:00:00 2001 From: rozyczko Date: Wed, 15 Apr 2026 09:23:54 +0200 Subject: [PATCH 1/2] point to the core branch --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 9833bc40..90a241de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ requires-python = ">=3.11,<3.14" dependencies = [ "easyscience", + "easyscience @ git+https://github.com/EasyScience/core.git@interim_updates", "scipp", "refnx", "refl1d>=1.0.0", From d980445190229752f8091a51497ded105d4fb240 Mon Sep 17 00:00:00 2001 From: rozyczko Date: Tue, 28 Apr 2026 12:12:36 +0200 Subject: [PATCH 2/2] update iter count for fit --- pyproject.toml | 2 +- tests/test_ort_file.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 90a241de..c1bdeece 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ requires-python = ">=3.11,<3.14" dependencies = [ "easyscience", - "easyscience @ git+https://github.com/EasyScience/core.git@interim_updates", + "easyscience @ git+https://github.com/EasyScience/core.git@develop", "scipp", "refnx", "refl1d>=1.0.0", diff --git a/tests/test_ort_file.py b/tests/test_ort_file.py index c547b1f5..8ef1de16 100644 --- a/tests/test_ort_file.py +++ b/tests/test_ort_file.py @@ -123,6 +123,7 @@ def fit_model(load_data): fitter1 = MultiFitter(multi_layer_model) fitter1.switch_minimizer(AvailableMinimizers.Bumps_simplex) + fitter1.easy_science_multi_fitter.max_evaluations = 3000 analysed = fitter1.fit(data) return analysed