@@ -24,7 +24,7 @@ class _MatlabFinder(build_py):
24
24
MATLAB_REL = 'R2023b'
25
25
26
26
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
27
- MATLAB_VER = '9.15.1a4 '
27
+ MATLAB_VER = '9.15.1a5 '
28
28
29
29
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
30
30
SUPPORTED_PYTHON_VERSIONS = set (['3.9' , '3.10' ])
@@ -331,14 +331,14 @@ def search_path_for_directory_unix(self, arch, path_dirs):
331
331
def _err_msg_if_bad_matlab_root (self , matlab_root ):
332
332
if not matlab_root :
333
333
if self .found_matlab_version :
334
- _print_if_verbose (f'self.found_matlab_version: { self .found_matlab_version } ; self.VER_TO_REL: { self .VER_TO_REL } ' )
334
+ self . _print_if_verbose (f'self.found_matlab_version: { self .found_matlab_version } ; self.VER_TO_REL: { self .VER_TO_REL } ' )
335
335
if self .found_matlab_version in self .VER_TO_REL :
336
336
return self .incompatible_ver .format (ver = self .found_matlab_version , rel = self .found_matlab_release )
337
337
# Found a MATLAB release but it is older than the oldest version supported,
338
338
# or newer than the newest version supported.
339
339
else :
340
340
v_to_r_keys = list (self .VER_TO_REL .keys ())
341
- _print_if_verbose (f'v_to_r_keys: { v_to_r_keys } ' )
341
+ self . _print_if_verbose (f'v_to_r_keys: { v_to_r_keys } ' )
342
342
min_v = v_to_r_keys [0 ]
343
343
min_r = self .VER_TO_REL [min_v ]
344
344
max_v = v_to_r_keys [- 1 ]
@@ -414,7 +414,7 @@ def run(self):
414
414
setup (
415
415
name = "matlabengine" ,
416
416
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
417
- version = "9.15.1a4 " ,
417
+ version = "9.15.1a5 " ,
418
418
description = 'A module to call MATLAB from Python' ,
419
419
author = 'MathWorks' ,
420
420
license = "MathWorks XSLA License" ,
0 commit comments