From fea65db63da5172d76b83108f6850123fb53bd1f Mon Sep 17 00:00:00 2001 From: AlanF-MW <103284994+alanfmw@users.noreply.github.com> Date: Thu, 29 Feb 2024 13:43:40 -0500 Subject: [PATCH] 23.2.3 --- README.md | 8 ++++---- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 422e8e9..d285a06 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The MATLAB® Engine API for Python® provides a package to integrate MATLA ### Required 3rd Party Products <!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) --> * Python 3.9, 3.10, or 3.11 - * Supported Python versions by MATLAB release can be found [here](https://mathworks.com/support/requirements/python-compatibility.html). + * Supported Python versions by MATLAB release can be found [here](https://www.mathworks.com/support/requirements/python-compatibility.html). --- @@ -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. <!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) --> ```bash -$ python -m pip install matlabengine==23.2.2 +$ python -m pip install matlabengine==23.2.3 ``` @@ -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. <!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) --> ```bash -$ python -m pip install matlabengine==23.2.2 +$ python -m pip install matlabengine==23.2.3 ``` ### 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. <!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) --> ```bash -$ python -m pip install matlabengine==23.2.2 +$ python -m pip install matlabengine==23.2.3 ``` --- diff --git a/setup.py b/setup.py index 084a52d..a585e21 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class _MatlabFinder(build_py): MATLAB_REL = 'R2023b' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - MATLAB_VER = '23.2.2' + MATLAB_VER = '23.2.3' # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) SUPPORTED_PYTHON_VERSIONS = set(['3.9', '3.10', '3.11']) @@ -415,7 +415,7 @@ def run(self): setup( name="matlabengine", # MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) - version="23.2.2", + version="23.2.3", description='A module to call MATLAB from Python', author='MathWorks', license="LICENSE.txt, located in this repository",