Skip to content

Commit c57c1a3

Browse files
committed
9.15.1a1: update version numbers
1 parent f9befee commit c57c1a3

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ 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 R2023a
9+
* MATLAB release R2023b
1010

1111
### Required 3rd Party Products
1212
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
13-
* Python 3.8, 3.9, or 3.10
13+
* Python 3.9 or 3.10
1414
* Supported Python versions by MATLAB release can be found [here](https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/python-compatibility.pdf).
1515

1616
---
@@ -21,17 +21,17 @@ 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==9.14.1a1
24+
$ python -m pip install matlabengine==9.15.1a1
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/R2023a```
32+
```/usr/local/MATLAB/R2023b```
3333

34-
When MATLAB is not installed in the default location, the bin/*architecture* directory within the MATLAB root directory must be added to an environment variable. 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).
34+
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

3636
```bash
3737
# in .bashrc
@@ -46,16 +46,16 @@ 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==9.14.1a1
49+
$ python -m pip install matlabengine==9.15.1a1
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_R2023a.app```
56+
```/Applications/MATLAB_R2023b.app```
5757

58-
When MATLAB is not installed in the default location, the bin/*architecture* directory within the MATLAB root directory must be added to an environment variable. 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).
58+
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

6060
```bash
6161
# in .bashrc
@@ -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==9.14.1a1
73+
$ python -m pip install matlabengine==9.15.1a1
7474
```
7575

7676
---

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ class _MatlabFinder(build_py):
2424
MATLAB_REL = 'R2023a'
2525

2626
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
27-
MATLAB_VER = '9.14.1a1'
27+
MATLAB_VER = '9.15.1a1'
2828

2929
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
30-
SUPPORTED_PYTHON_VERSIONS = set(['3.8', '3.9', '3.10'])
30+
SUPPORTED_PYTHON_VERSIONS = set(['3.9', '3.10'])
3131

3232
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
3333
VER_TO_REL = {
@@ -36,7 +36,8 @@ class _MatlabFinder(build_py):
3636
"9.11": "R2021b",
3737
"9.12": "R2022a",
3838
"9.13": "R2022b",
39-
"9.14": "R2023a"
39+
"9.14": "R2023a",
40+
"9.15": "R2023b"
4041
}
4142

4243
DEFAULT_INSTALLS = {
@@ -409,7 +410,7 @@ def run(self):
409410
setup(
410411
name="matlabengine",
411412
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
412-
version="9.14.1a1",
413+
version="9.15.1a1",
413414
description='A module to call MATLAB from Python',
414415
author='MathWorks',
415416
license="MathWorks XSLA License",
@@ -434,10 +435,9 @@ def run(self):
434435
"Natural Language :: English",
435436
"Intended Audience :: Developers",
436437
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
437-
"Programming Language :: Python :: 3.8",
438438
"Programming Language :: Python :: 3.9",
439439
"Programming Language :: Python :: 3.10"
440440
],
441441
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
442-
python_requires=">=3.8, <3.11"
442+
python_requires=">=3.9, <3.11"
443443
)

0 commit comments

Comments
 (0)