@@ -24,7 +24,7 @@ class _MatlabFinder(build_py):
2424 MATLAB_REL = 'R2023b'
2525
2626 # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
27- MATLAB_VER = '9.15.1a4 '
27+ MATLAB_VER = '9.15.1a5 '
2828
2929 # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
3030 SUPPORTED_PYTHON_VERSIONS = set (['3.9' , '3.10' ])
@@ -331,14 +331,14 @@ def search_path_for_directory_unix(self, arch, path_dirs):
331331 def _err_msg_if_bad_matlab_root (self , matlab_root ):
332332 if not matlab_root :
333333 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 } ' )
335335 if self .found_matlab_version in self .VER_TO_REL :
336336 return self .incompatible_ver .format (ver = self .found_matlab_version , rel = self .found_matlab_release )
337337 # Found a MATLAB release but it is older than the oldest version supported,
338338 # or newer than the newest version supported.
339339 else :
340340 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 } ' )
342342 min_v = v_to_r_keys [0 ]
343343 min_r = self .VER_TO_REL [min_v ]
344344 max_v = v_to_r_keys [- 1 ]
@@ -414,7 +414,7 @@ def run(self):
414414 setup (
415415 name = "matlabengine" ,
416416 # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
417- version = "9.15.1a4 " ,
417+ version = "9.15.1a5 " ,
418418 description = 'A module to call MATLAB from Python' ,
419419 author = 'MathWorks' ,
420420 license = "MathWorks XSLA License" ,
0 commit comments