From 98e3a02015b38e0971935a90b008282cb066bc36 Mon Sep 17 00:00:00 2001 From: AlanF-MW <103284994+alanfmw@users.noreply.github.com> Date: Tue, 28 Jun 2022 16:21:58 -0400 Subject: [PATCH] changed version to 9.12.10 --- README.md | 6 +++--- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dcea962..b6a56b5 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.12.9 +$ python -m pip install matlabengine==9.12.10 ``` @@ -46,7 +46,7 @@ setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:matlabroot/bin/glnxa64 MATLAB Engine API for Python can be installed directly from the Python Package Index. ```bash -$ python -m pip install matlabengine==9.12.9 +$ python -m pip install matlabengine==9.12.10 ``` ### macOS @@ -70,7 +70,7 @@ setenv DYLD_LIBRARY_PATH ${DYLD_LIBRARY_PATH}:matlabroot/bin/maci64 MATLAB Engine API for Python can be installed directly from the Python Package Index. ```bash -$ python -m pip install matlabengine==9.12.9 +$ python -m pip install matlabengine==9.12.10 ``` --- diff --git a/setup.py b/setup.py index 9442938..c19fb61 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class _MatlabFinder(build_py): MATLAB_REL = 'R2022a' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - MATLAB_VER = '9.12.9' + MATLAB_VER = '9.12.10' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) SUPPORTED_PYTHON_VERSIONS = set(['3.8', '3.9']) @@ -299,7 +299,7 @@ def run(self): setup( name="matlabengine", # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - version="9.12.9", + version="9.12.10", description='A module to call MATLAB from Python', author='MathWorks', license="MathWorks XSLA License",