diff --git a/README.md b/README.md index e73a170..db14f2e 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.2 +$ python -m pip install matlabengine==9.9.3 ``` @@ -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.2 +$ python -m pip install matlabengine==9.9.3 ``` ### 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.2 +$ python -m pip install matlabengine==9.9.3 ``` --- @@ -122,7 +122,7 @@ See [Troubleshoot MATLAB Errors in Python](https://www.mathworks.com/help/matlab --- ## License -This software is licensed under the MathWorks XSLA License, which is available in the LICENSE.txt file within this repository. +The license is available in the LICENSE.txt file within this repository. --- diff --git a/setup.py b/setup.py index de92cd9..8afb5d0 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.2' + MATLAB_VER = '9.9.3' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) SUPPORTED_PYTHON_VERSIONS = set(['3.6', '3.7', '3.8']) @@ -307,10 +307,10 @@ def run(self): setup( name="matlabengine", # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - version="9.9.2", + version="9.9.3", description='A module to call MATLAB from Python', author='MathWorks', - license="MathWorks XSLA License", + license="LICENSE.txt, located in this repository", url='https://github.com/mathworks/matlab-engine-for-python/', long_description=long_description, long_description_content_type="text/markdown",