@@ -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.1a3 '
27
+ MATLAB_VER = '9.15.1a4 '
28
28
29
29
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
30
30
SUPPORTED_PYTHON_VERSIONS = set (['3.9' , '3.10' ])
@@ -53,7 +53,7 @@ class _MatlabFinder(build_py):
53
53
found_matlab_version = ''
54
54
found_matlab_with_wrong_arch_in_default_install = ''
55
55
found_matlab_with_wrong_arch_in_path = ''
56
- verbose = False
56
+ verbose = True
57
57
58
58
# ERROR MESSAGES
59
59
minimum_maximum = "No compatible version of MATLAB was found. " + \
@@ -331,12 +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
335
if self .found_matlab_version in self .VER_TO_REL :
335
336
return self .incompatible_ver .format (ver = self .found_matlab_version , rel = self .found_matlab_release )
336
337
# Found a MATLAB release but it is older than the oldest version supported,
337
338
# or newer than the newest version supported.
338
339
else :
339
340
v_to_r_keys = list (self .VER_TO_REL .keys ())
341
+ _print_if_verbose (f'v_to_r_keys: { v_to_r_keys } ' )
340
342
min_v = v_to_r_keys [0 ]
341
343
min_r = self .VER_TO_REL [min_v ]
342
344
max_v = v_to_r_keys [- 1 ]
@@ -412,7 +414,7 @@ def run(self):
412
414
setup (
413
415
name = "matlabengine" ,
414
416
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
415
- version = "9.15.1a3 " ,
417
+ version = "9.15.1a4 " ,
416
418
description = 'A module to call MATLAB from Python' ,
417
419
author = 'MathWorks' ,
418
420
license = "MathWorks XSLA License" ,
0 commit comments