Skip to content

Commit 65f83e5

Browse files
author
Prabhakar Kumar
committed
Update to v0.5.3
* Remove OS from DDUX * Remove invalid startup flags
1 parent a2c0432 commit 65f83e5

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

matlab_proxy/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ def __get_matlab_proxy_base_ddux_value():
3535
Returns:
3636
str : DDUX value for MATLAB use.
3737
"""
38-
current_os = system.get_os().upper()
39-
40-
return f"MATLAB_PROXY:BASE:{current_os}:V1"
38+
return f"MATLAB_PROXY:BASE:V1"
4139

4240

4341
def get_mwi_ddux_value(extension_name):

matlab_proxy/settings.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ def get(config_name=matlab_proxy.get_default_config_name(), dev=False):
152152
"matlab_version": get_matlab_version(matlab_path),
153153
"matlab_cmd": [
154154
"matlab",
155-
"-webui",
156155
"-nosplash",
157156
"-nodesktop",
158157
"-softwareopengl",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def run(self):
6666

6767
setuptools.setup(
6868
name="matlab-proxy",
69-
version="0.5.2",
69+
version="0.5.3",
7070
url=config["doc_url"],
7171
author="The MathWorks, Inc.",
7272
author_email="cloud@mathworks.com",

tests/test_ddux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_get_mwi_ddux_value():
1212

1313
assert expected_result == actual_result
1414

15-
expected_result = f"MATLAB_PROXY:HELLO_WORLD:{util.system.get_os().upper()}:V1"
15+
expected_result = f"MATLAB_PROXY:HELLO_WORLD:V1"
1616
actual_result = matlab_proxy.get_mwi_ddux_value("hello world")
1717

1818
assert expected_result == actual_result

0 commit comments

Comments
 (0)