@@ -24,10 +24,10 @@ class _MatlabFinder(build_py):
24
24
MATLAB_REL = 'R2021a'
25
25
26
26
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
27
- MATLAB_VER = '9.10.1a0'
27
+ MATLAB_VER = '9.10.1a1'
28
28
29
29
# 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' ])
31
31
32
32
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
33
33
VER_TO_REL = {
@@ -303,7 +303,7 @@ def run(self):
303
303
setup (
304
304
name = "matlabengine" ,
305
305
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
306
- version = "9.10.1a0 " ,
306
+ version = "9.10.1a1 " ,
307
307
description = 'A module to call MATLAB from Python' ,
308
308
author = 'MathWorks' ,
309
309
license = "MathWorks XSLA License" ,
@@ -328,10 +328,9 @@ def run(self):
328
328
"Natural Language :: English" ,
329
329
"Intended Audience :: Developers" ,
330
330
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
331
- "Programming Language :: Python :: 2.7" ,
332
331
"Programming Language :: Python :: 3.7" ,
333
332
"Programming Language :: Python :: 3.8"
334
333
],
335
334
# 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"
337
336
)
0 commit comments