Skip to content

Commit 36b4cb5

Browse files
committed
24.1.1
1 parent fea65db commit 36b4cb5

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The MATLAB® Engine API for Python® provides a package to integrate MATLA
66
## Requirements
77
### Required MathWorks Products
88
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
9-
* MATLAB release R2023b
9+
* MATLAB release R2024a
1010

1111
### Required 3rd Party Products
1212
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
@@ -21,15 +21,15 @@ The MATLAB&reg; Engine API for Python&reg; provides a package to integrate MATLA
2121
MATLAB Engine API for Python can be installed directly from the Python Package Index.
2222
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
2323
```bash
24-
$ python -m pip install matlabengine==23.2.3
24+
$ python -m pip install matlabengine==24.1.1
2525
```
2626

2727

2828

2929
### Linux&reg;
3030
Prior to installation, check the default install location of MATLAB by calling ```matlabroot``` in a MATLAB Command Window. By default, Linux installs MATLAB at:<br>
3131
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
32-
```/usr/local/MATLAB/R2023b```
32+
```/usr/local/MATLAB/R2024a```
3333

3434
When MATLAB is not installed in the default location, the bin/*architecture* directory within the MATLAB root directory must be added to the environment variable LD_LIBRARY_PATH. The path can be added to the environment variable within the shell startup configuration file (for example, .bashrc for bash shell or .tcshrc for tcsh).
3535

@@ -46,14 +46,14 @@ setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:<matlabroot>/bin/glnxa64
4646
MATLAB Engine API for Python can be installed directly from the Python Package Index.
4747
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
4848
```bash
49-
$ python -m pip install matlabengine==23.2.3
49+
$ python -m pip install matlabengine==24.1.1
5050
```
5151

5252
### macOS
5353
Prior to installation, check the default install location of MATLAB by calling ```matlabroot``` in a MATLAB Command Window. By default, macOS installs MATLAB at:<br>
5454

5555
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
56-
```/Applications/MATLAB_R2023b.app```
56+
```/Applications/MATLAB_R2024a.app```
5757

5858
When MATLAB is not installed in the default location, the bin/*architecture* directory within the MATLAB root directory must be added to the environment variable DYLD_LIBRARY_PATH. The path can be added to the environment variable within the shell startup configuration file (for example, .bashrc for bash shell or .tcshrc for tcsh).
5959

@@ -70,7 +70,7 @@ setenv DYLD_LIBRARY_PATH ${DYLD_LIBRARY_PATH}:<matlabroot>/bin/maci64
7070
MATLAB Engine API for Python can be installed directly from the Python Package Index.
7171
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
7272
```bash
73-
$ python -m pip install matlabengine==23.2.3
73+
$ python -m pip install matlabengine==24.1.1
7474
```
7575

7676
---

setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022-2023 Mathworks, Inc.
1+
# Copyright 2024 Mathworks, Inc.
22

33
from setuptools import setup, find_packages
44
from setuptools.command.build_py import build_py
@@ -21,10 +21,10 @@ class _MatlabFinder(build_py):
2121
}
2222

2323
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
24-
MATLAB_REL = 'R2023b'
24+
MATLAB_REL = 'R2024a'
2525

2626
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
27-
MATLAB_VER = '23.2.3'
27+
MATLAB_VER = '24.1.1'
2828

2929
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
3030
SUPPORTED_PYTHON_VERSIONS = set(['3.9', '3.10', '3.11'])
@@ -37,7 +37,8 @@ class _MatlabFinder(build_py):
3737
"9.12": "R2022a",
3838
"9.13": "R2022b",
3939
"9.14": "R2023a",
40-
"23.2": "R2023b"
40+
"23.2": "R2023b",
41+
"24.1": "R2024a"
4142
}
4243

4344
DEFAULT_INSTALLS = {
@@ -415,7 +416,7 @@ def run(self):
415416
setup(
416417
name="matlabengine",
417418
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
418-
version="23.2.3",
419+
version="24.1.1",
419420
description='A module to call MATLAB from Python',
420421
author='MathWorks',
421422
license="LICENSE.txt, located in this repository",

0 commit comments

Comments
 (0)