From 320142753c386aa0fc2e724b26a101c24f4ea5c3 Mon Sep 17 00:00:00 2001 From: AlanF-MW <103284994+alanfmw@users.noreply.github.com> Date: Mon, 10 Oct 2022 15:06:12 -0400 Subject: [PATCH] fixed comment; version number is 9.9.2 --- README.md | 6 +++--- setup.py | 7 +++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ad853d8..e73a170 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The MATLAB® Engine API for Python® provides a package to integrate MATLA MATLAB Engine API for Python can be installed directly from the Python Package Index. ```bash -$ python -m pip install matlabengine==9.9.1 +$ python -m pip install matlabengine==9.9.2 ``` @@ -46,7 +46,7 @@ setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/bin/glnxa64 MATLAB Engine API for Python can be installed directly from the Python Package Index. ```bash -$ python -m pip install matlabengine==9.9.1 +$ python -m pip install matlabengine==9.9.2 ``` ### macOS @@ -70,7 +70,7 @@ setenv DYLD_LIBRARY_PATH ${DYLD_LIBRARY_PATH}:/bin/maci64 MATLAB Engine API for Python can be installed directly from the Python Package Index. ```bash -$ python -m pip install matlabengine==9.9.1 +$ python -m pip install matlabengine==9.9.2 ``` --- diff --git a/setup.py b/setup.py index f3c59c9..de92cd9 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class _MatlabFinder(build_py): MATLAB_REL = 'R2020b' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - MATLAB_VER = '9.9.1' + MATLAB_VER = '9.9.2' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) SUPPORTED_PYTHON_VERSIONS = set(['3.6', '3.7', '3.8']) @@ -208,8 +208,7 @@ def _check_matlab_ver_against_engine(self, matlab_ver): def verify_matlab_release(self, root): """ Parses VersionInfo.xml to verify the MATLAB release matches the supported release - for the Python Engine. The major and minor version numbers must match. Everything - else will be ignored. + for the Python Engine. """ version_info = os.path.join(root, 'VersionInfo.xml') if not os.path.isfile(version_info): @@ -308,7 +307,7 @@ def run(self): setup( name="matlabengine", # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - version="9.9.1", + version="9.9.2", description='A module to call MATLAB from Python', author='MathWorks', license="MathWorks XSLA License",