Skip to content

Commit 664b9b1

Browse files
prabhakk-mwdpwrussellPrabhakar Kumar
authored
Update jupyter-matlab-proxy version to 0.2.0 & update aiohttp to use 3.7.4 (#5)
* Restricted MATLAB Connector port range to allowed range * Fix embedded login for MathWorks development environments * Add command to install JupyterLab * Set default value of MHLM_CONTEXT to MATLAB_JAVASCRIPT_DESKTOP and MATLAB_JUPYTER when accessed through Juptyer interface * Update APP version number and update AIOHTTP to resolve security warning Co-authored-by: dpwrussell <[email protected]> Co-authored-by: Prabhakar Kumar <[email protected]>
1 parent eb27f1f commit 664b9b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

jupyter_matlab_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 The MathWorks, Inc.
1+
# Copyright 2021 The MathWorks, Inc.
22

33
import os
44

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 The MathWorks, Inc.
1+
# Copyright 2021 The MathWorks, Inc.
22

33
import json
44
import os
@@ -47,15 +47,15 @@ def run(self):
4747

4848
setuptools.setup(
4949
name="jupyter-matlab-proxy",
50-
version="0.1.0",
50+
version="0.2.0",
5151
url="https://github.com/mathworks/jupyter-matlab-proxy",
5252
author="The MathWorks, Inc.",
5353
description="Jupyter extension to proxy MATLAB JavaScript Desktop",
5454
packages=setuptools.find_packages(exclude=["devel", "tests"]),
5555
keywords=["Jupyter"],
5656
classifiers=["Framework :: Jupyter"],
5757
python_requires="~=3.6",
58-
install_requires=["jupyter-server-proxy", "aiohttp~=3.6.2"],
58+
install_requires=["jupyter-server-proxy", "aiohttp>=3.7.4"],
5959
setup_requires=["pytest-runner"],
6060
tests_require=tests_require,
6161
extras_require={"dev": ["aiohttp-devtools"] + tests_require},

0 commit comments

Comments
 (0)