Skip to content

Commit 55cc1a4

Browse files
committed
Fix: Use correct syntax for pyenv call
1 parent 3432a2b commit 55cc1a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mhkit/package/+mhkit/install.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function initialize_python_integration(env_name, logger)
209209
logger.info('Added Python directory to PATH: %s', python_dir);
210210

211211
% Set MATLAB's Python environment with OutOfProcess execution mode (like working Unix tests)
212-
pyenv('Version', python_path, 'ExecutionMode', 'OutOfProcess');
212+
pyenv(Version=python_path, ExecutionMode="OutOfProcess");
213213
logger.info('Configured pyenv with OutOfProcess execution mode');
214214

215215
% Test Python import

0 commit comments

Comments
 (0)