From a1c0c2268b06a7f96f6cd8fc88d175b29cfd3815 Mon Sep 17 00:00:00 2001 From: Lia Domide <lia.domide@codemart.ro> Date: Wed, 18 Dec 2024 14:08:08 +0100 Subject: [PATCH] fix(py-tvb-widgets): relax VTK version dependency Pinned dependency on vtk@9.2.6 (that should be avoided anyway) conflicts with gcc@13. vtk@9 was selected as a lower limit to avoid using older versions since compatibility has not been tested. --- packages/py-tvb-widgets/package.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/py-tvb-widgets/package.py b/packages/py-tvb-widgets/package.py index 7ca3db0d..855ac583 100644 --- a/packages/py-tvb-widgets/package.py +++ b/packages/py-tvb-widgets/package.py @@ -47,8 +47,7 @@ class PyTvbWidgets(PythonPackage): depends_on('py-traitlets@5.7.1:', type=('build', 'run')) depends_on('py-toml', type=('build', 'run')) depends_on('py-bokeh', type=('build', 'run')) - depends_on('vtk@=9.2.6', type=('build', 'run')) - + depends_on('vtk@9:9.3', type=('build', 'run')) depends_on('py-pytest', type='test') depends_on('py-pytest-mock', type='test') -- GitLab