Skip to content

Commit 25a05a0

Browse files
Add missing dependency for geos-posp plugins init (#147)
1 parent 8bcce55 commit 25a05a0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

geos-posp/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ requires-python = ">= 3.10"
3838
dependencies = [
3939
"geos-geomechanics",
4040
"geos-utils",
41+
"geos-mesh",
4142
"vtk >= 9.3",
4243
"numpy >= 2.2",
4344
"pandas >= 2.2",
@@ -56,11 +57,11 @@ build = [
5657
"build ~= 1.2"
5758
]
5859
dev = [
59-
"mypy",
60+
"mypy",
6061
"yapf",
6162
]
6263
test = [
63-
"pytest-cov",
64+
"pytest-cov",
6465
"pytest"
6566
]
6667

geos-posp/src/PVplugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
dir_path = os.path.dirname( os.path.realpath( __file__ ) )
66
python_root = '../../..'
77

8-
python_modules = ( 'geos-posp', 'geos-utils', 'geos-geomechanics' )
8+
python_modules = ( 'geos-posp', 'geos-utils', 'geos-geomechanics', 'geos-mesh' )
99

1010
for m in python_modules:
1111
m_path = os.path.abspath( os.path.join( dir_path, python_root, m, 'src' ) )

0 commit comments

Comments
 (0)