@@ -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