From 994f1f4abc645f40f375f1013c8f90efad9419ed Mon Sep 17 00:00:00 2001 From: Paloma Martinez <104762252+paloma-martinez@users.noreply.github.com> Date: Wed, 8 Oct 2025 11:13:59 +0200 Subject: [PATCH] Add missing dependency --- geos-posp/pyproject.toml | 5 +++-- geos-posp/src/PVplugins/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/geos-posp/pyproject.toml b/geos-posp/pyproject.toml index 0a4c32f50..2b07d0de3 100644 --- a/geos-posp/pyproject.toml +++ b/geos-posp/pyproject.toml @@ -38,6 +38,7 @@ requires-python = ">= 3.10" dependencies = [ "geos-geomechanics", "geos-utils", + "geos-mesh", "vtk >= 9.3", "numpy >= 2.2", "pandas >= 2.2", @@ -56,11 +57,11 @@ build = [ "build ~= 1.2" ] dev = [ - "mypy", + "mypy", "yapf", ] test = [ - "pytest-cov", + "pytest-cov", "pytest" ] diff --git a/geos-posp/src/PVplugins/__init__.py b/geos-posp/src/PVplugins/__init__.py index dbd534e80..6271e4ad0 100644 --- a/geos-posp/src/PVplugins/__init__.py +++ b/geos-posp/src/PVplugins/__init__.py @@ -5,7 +5,7 @@ dir_path = os.path.dirname( os.path.realpath( __file__ ) ) python_root = '../../..' -python_modules = ( 'geos-posp', 'geos-utils', 'geos-geomechanics' ) +python_modules = ( 'geos-posp', 'geos-utils', 'geos-geomechanics', 'geos-mesh' ) for m in python_modules: m_path = os.path.abspath( os.path.join( dir_path, python_root, m, 'src' ) )