diff --git a/README.md b/README.md index 52d0ed1..d5a3cc7 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,9 @@ run `developer_notebook.ipynb` notebook there. # Changelog +## v1.0.1 +- Notebook extensions and requirements update + ## v1.0.0 - Minor improvements - Empty worksheet warning @@ -270,15 +273,14 @@ run `developer_notebook.ipynb` notebook there. ## v0.0.6 -- Installation made easier. - +- Installation made easier - N4SID method was removed temporarily. # Support -Code related issues (e.g. bugs, feature requests) can be created in the +Code-related issues (e.g. bugs, feature requests) can be created in the [issue tracker](https://github.com/BYU-PRISM/Seeq/issues) @@ -287,7 +289,7 @@ Code related issues (e.g. bugs, feature requests) can be created in the Please cite this work as: ```shell -seeq-sysid v0.6.1 +seeq-sysid v1.0.1 BYU PRISM Group https://apm.byu.edu/prism/ https://github.com/BYU-PRISM/Seeq ``` diff --git a/SysID Addon/README.md b/SysID Addon/README.md index 12dc954..e68de8a 100644 --- a/SysID Addon/README.md +++ b/SysID Addon/README.md @@ -201,6 +201,9 @@ run `developer_notebook.ipynb` notebook there. # Changelog +## v1.0.1 +- Notebook extensions and requirements update + ## v1.0.0 - Minor improvements - Empty worksheet warning @@ -270,15 +273,14 @@ run `developer_notebook.ipynb` notebook there. ## v0.0.6 -- Installation made easier. - +- Installation made easier - N4SID method was removed temporarily. # Support -Code related issues (e.g. bugs, feature requests) can be created in the +Code-related issues (e.g. bugs, feature requests) can be created in the [issue tracker](https://github.com/BYU-PRISM/Seeq/issues) @@ -287,7 +289,7 @@ Code related issues (e.g. bugs, feature requests) can be created in the Please cite this work as: ```shell -seeq-sysid v0.6.1 +seeq-sysid v1.0.1 BYU PRISM Group https://apm.byu.edu/prism/ https://github.com/BYU-PRISM/Seeq ``` diff --git a/SysID Addon/seeq_sysid/__main__.py b/SysID Addon/seeq_sysid/__main__.py index 303138a..5835783 100644 --- a/SysID Addon/seeq_sysid/__main__.py +++ b/SysID Addon/seeq_sysid/__main__.py @@ -10,7 +10,7 @@ from ._copy import copy import seeq -NB_EXTENSIONS = ['widgetsnbextension', 'plotlywidget', 'ipyvuetify', 'ipyvue'] +NB_EXTENSIONS = ['widgetsnbextension', 'ipyvuetify', 'ipyvue'] DEPLOYMENT_FOLDER = 'deployment' SYSID_NOTEBOOK = "sysid_notebook.ipynb" DEFAULT_GROUP = ['Everyone'] diff --git a/SysID Addon/seeq_sysid/_version.py b/SysID Addon/seeq_sysid/_version.py index 1f356cc..cd7ca49 100644 --- a/SysID Addon/seeq_sysid/_version.py +++ b/SysID Addon/seeq_sysid/_version.py @@ -1 +1 @@ -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/SysID Addon/setup.py b/SysID Addon/setup.py index 1069c03..67a0358 100644 --- a/SysID Addon/setup.py +++ b/SysID Addon/setup.py @@ -5,7 +5,7 @@ setup( name='seeq_sysid', - version='1.0.0', + version='1.0.1', packages=find_packages(), url='https://github.com/BYU-PRISM/Seeq', license='MIT', @@ -18,8 +18,8 @@ 'ipyvuetify>=1.5.1', 'gekko>=1.0.6', 'numpy', - 'pandas>=1.2.1', - 'plotly>=4.5.0', + 'pandas<2.0.0,>=1.2.1', + 'plotly>=5.10.0', 'python-dateutil>=2.8.1', 'tensorflow>=2.5', 'keras-tuner==1.0.4',