From c40665dd3b9be87c4575f75c6125fc44b64c6363 Mon Sep 17 00:00:00 2001 From: AlanF-MW <103284994+alanfmw@users.noreply.github.com> Date: Mon, 6 Jun 2022 20:11:27 -0400 Subject: [PATCH] changed version to 9.11.10 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4a7e008..0a18942 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class _MatlabFinder(build_py): MATLAB_REL = 'R2021b' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - MATLAB_VER = '9.11.9' + MATLAB_VER = '9.11.10' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) SUPPORTED_PYTHON_VERSIONS = set(['3.7', '3.8', '3.9']) @@ -174,7 +174,7 @@ def _find_matlab_key_from_windows_registry(self, key): found_vers.append(sub_key) # Example: the version in the registry could be "9.13.1" whereas our version is "9.13" # we still want to allow this - if self._check_matlab_release_against_engine(sub_key) + if self._check_matlab_release_against_engine(sub_key): key_value = sub_key break