Skip to content

Commit

Permalink
v0.8; fix issue with version detection when only one architecture of …
Browse files Browse the repository at this point in the history
…MATLAB is installed
  • Loading branch information
jonathonw committed Mar 30, 2020
1 parent d0a8a2f commit 8506b23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion matlab_proxy/matlab_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def get_latest_matlab(reg_wow64):
except WindowsError as e:
if e.winerror != 2:
raise
return None
return (None, None)
with matlab:
matlab_versions = []
try:
Expand Down
2 changes: 1 addition & 1 deletion matlab_proxy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

setup(
name="matlab_proxy",
version="0.7",
version="0.8",
packages=['matlab_proxy'],
include_package_data=True,
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name="matlab_wrapper",
version="0.7",
version="0.8",
packages=find_packages(),
# FIXME do we need openmdao>=1.5.0,<2.0.0
install_requires=["openmdao==1.*", "smop>=0.23", "six>=1.10.0"]
Expand Down

0 comments on commit 8506b23

Please sign in to comment.