Skip to content

Commit d6e13a3

Browse files
committed
fixed minimum/maximum error message; changed version number to 9.10.1a1
1 parent 6fc723b commit d6e13a3

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The MATLAB® Engine API for Python® 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.10.1a0
24+
$ python -m pip install matlabengine==9.10.1a1
2525
```
2626

2727

@@ -46,7 +46,7 @@ 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.10.1a0
49+
$ python -m pip install matlabengine==9.10.1a1
5050
```
5151

5252
### macOS
@@ -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.10.1a0
73+
$ python -m pip install matlabengine==9.10.1a1
7474
```
7575

7676
---

setup.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ class _MatlabFinder(build_py):
2424
MATLAB_REL = 'R2021a'
2525

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

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

3232
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
3333
VER_TO_REL = {
@@ -303,7 +303,7 @@ def run(self):
303303
setup(
304304
name="matlabengine",
305305
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
306-
version="9.10.1a0",
306+
version="9.10.1a1",
307307
description='A module to call MATLAB from Python',
308308
author='MathWorks',
309309
license="MathWorks XSLA License",
@@ -328,10 +328,9 @@ def run(self):
328328
"Natural Language :: English",
329329
"Intended Audience :: Developers",
330330
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
331-
"Programming Language :: Python :: 2.7",
332331
"Programming Language :: Python :: 3.7",
333332
"Programming Language :: Python :: 3.8"
334333
],
335334
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
336-
python_requires=">=2.7.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, <3.9"
335+
python_requires=">=3.7, <3.9"
337336
)

0 commit comments

Comments
 (0)