Skip to content

Commit 59895d1

Browse files
committed
Fix NPM build failure, ad line break to README
1 parent 2b1ca8c commit 59895d1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/mathworks/jupyter-matlab-proxy/MATLAB%20Jupyter%20Integration?logo=github)](https://github.com/mathworks/jupyter-matlab-proxy/actions)
33
[![PyPI badge](https://img.shields.io/pypi/v/jupyter-matlab-proxy.svg?logo=pypi)](https://pypi.python.org/pypi/jupyter-matlab-proxy)
44
[![codecov](https://codecov.io/gh/mathworks/jupyter-matlab-proxy/branch/main/graph/badge.svg?token=ZW3SESKCSS)](https://codecov.io/gh/mathworks/jupyter-matlab-proxy)
5+
***
6+
57
The `jupyter-matlab-proxy` Python® package allows you to integrate MATLAB® with Jupyter®. The MATLAB integration for Jupyter enables you to open a MATLAB desktop in a web browser tab, directly from your Jupyter environment. This is not a kernel integration.
68

79
The MATLAB Integration for Jupyter is under active development and you might find issues with the MATLAB graphical user interface. For support or to report issues, see the [Feedback](https://github.com/mathworks/jupyter-matlab-proxy#feedback) section.

gui/src/components/LicensingGatherer/NLM.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
// IS:
1414
// ^[0-9]+[@](\w|\_|\-|\.)+$
1515
// Server triad is of the form : port@host1,port@host2,port@host3
16-
const connStrRegex = /^[\d]+@[\w|\-|\_|\.]+$|^[\d]+@[\w|\-|\_|\.]+,[\d]+@[\w|\-|\_|\.]+,[\d]+@[\w|\-|\_|\.]+$/
16+
const connStrRegex = /^[\d]+@[\w|\-|_|.]+$|^[\d]+@[\w|\-|_|.]+,[\d]+@[\w|\-|_|.]+,[\d]+@[\w|\-|_|.]+$/
1717

1818
function validateInput(str) {
1919
return connStrRegex.test(str);

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def run(self):
4848

4949
setuptools.setup(
5050
name="jupyter-matlab-proxy",
51-
version="0.3.3",
51+
version="0.3.4",
5252
url="https://github.com/mathworks/jupyter-matlab-proxy",
5353
author="The MathWorks, Inc.",
5454
author_email="[email protected]",

0 commit comments

Comments
 (0)