Skip to content

Commit

Permalink
fixed minimum/maximum error message; changed version number to 9.10.1a1
Browse files Browse the repository at this point in the history
  • Loading branch information
alanfmw committed Jul 8, 2022
1 parent 6fc723b commit d6e13a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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==9.10.1a0
$ python -m pip install matlabengine==9.10.1a1
```


Expand All @@ -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==9.10.1a0
$ python -m pip install matlabengine==9.10.1a1
```

### macOS
Expand All @@ -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==9.10.1a0
$ python -m pip install matlabengine==9.10.1a1
```

---
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ class _MatlabFinder(build_py):
MATLAB_REL = 'R2021a'

# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
MATLAB_VER = '9.10.1a0'
MATLAB_VER = '9.10.1a1'

# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
SUPPORTED_PYTHON_VERSIONS = set(['2.7', '3.7', '3.8'])
SUPPORTED_PYTHON_VERSIONS = set(['3.7', '3.8'])

# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
VER_TO_REL = {
Expand Down Expand Up @@ -303,7 +303,7 @@ def run(self):
setup(
name="matlabengine",
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
version="9.10.1a0",
version="9.10.1a1",
description='A module to call MATLAB from Python',
author='MathWorks',
license="MathWorks XSLA License",
Expand All @@ -328,10 +328,9 @@ def run(self):
"Natural Language :: English",
"Intended Audience :: Developers",
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
python_requires=">=2.7.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, <3.9"
python_requires=">=3.7, <3.9"
)

0 comments on commit d6e13a3

Please sign in to comment.