diff --git a/README.md b/README.md index eb8286b..ec84613 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.11.4 +$ python -m pip install matlabengine==9.11.11 ``` @@ -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.11.4 +$ python -m pip install matlabengine==9.11.11 ``` ### 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.11.4 +$ python -m pip install matlabengine==9.11.11 ``` --- diff --git a/setup.py b/setup.py index 0a18942..bf12429 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.10' + MATLAB_VER = '9.11.11' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) SUPPORTED_PYTHON_VERSIONS = set(['3.7', '3.8', '3.9']) @@ -301,7 +301,7 @@ def run(self): setup( name="matlabengine", # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - version="9.11.4", + version="9.11.11", description='A module to call MATLAB from Python', author='MathWorks', license="MathWorks XSLA License",