From 81a28e7f6225b9c8f36e4f4654ea385d2f73d2a0 Mon Sep 17 00:00:00 2001 From: ZoeLeibowitz Date: Mon, 6 Jan 2025 15:57:58 +0000 Subject: [PATCH] misc: Update scipy requirements and edit test_repeat_concretization --- requirements-optional.txt | 2 +- requirements-testing.txt | 2 +- tests/test_dimension.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements-optional.txt b/requirements-optional.txt index d9ca13e636..c2f4a4c3a2 100644 --- a/requirements-optional.txt +++ b/requirements-optional.txt @@ -1,4 +1,4 @@ matplotlib pyrevolve==2.2.4 -scipy +scipy>=1.13.0 distributed \ No newline at end of file diff --git a/requirements-testing.txt b/requirements-testing.txt index 0f88276721..479338223c 100644 --- a/requirements-testing.txt +++ b/requirements-testing.txt @@ -4,5 +4,5 @@ pytest-cov codecov flake8>=2.1.0 nbval -scipy +scipy>=1.13.0 pooch; python_version >= "3.8" diff --git a/tests/test_dimension.py b/tests/test_dimension.py index 25719ae200..2d2ffe9d7c 100644 --- a/tests/test_dimension.py +++ b/tests/test_dimension.py @@ -2070,7 +2070,7 @@ def test_repeat_concretization(self): ix = SubDimension.middle('ix', x, 2, 2) u = Function(name='u', grid=grid) - eq = Eq(u, ix.ltkn) + eq = Eq(u, ix + ix.ltkn + ix.rtkn) kwargs = {'sregistry': SymbolRegistry(), 'concretize_mapper': {}}