Skip to content
Snippets Groups Projects
Commit 66c14f36 authored by alice grosch's avatar alice grosch
Browse files

Fix versions

parent a6025a5f
No related tags found
No related merge requests found
{ {
"name": "pvlink", "name": "pvlink",
"version": "0.2.0", "version": "0.2.1",
"description": "ParaView-Web RemoteRenderer in Jupyter", "description": "ParaView-Web RemoteRenderer in Jupyter",
"keywords": [ "keywords": [
"jupyter", "jupyter",
...@@ -52,8 +52,8 @@ ...@@ -52,8 +52,8 @@
"@jupyter-widgets/base": "^1.1.10 || ^2", "@jupyter-widgets/base": "^1.1.10 || ^2",
"hammerjs": "^2.0.8", "hammerjs": "^2.0.8",
"monologue.js": "^0.3.5", "monologue.js": "^0.3.5",
"paraviewweb": "3.2.12", "paraviewweb": "^3.2.12",
"wslink": "0.1.13" "wslink": "^0.1.13"
}, },
"devDependencies": { "devDependencies": {
"@phosphor/application": "^1.6.0", "@phosphor/application": "^1.6.0",
......
...@@ -9,4 +9,4 @@ Information about the frontend package of the widgets. ...@@ -9,4 +9,4 @@ Information about the frontend package of the widgets.
""" """
module_name = "pvlink" module_name = "pvlink"
module_version = "^0.1.0" module_version = "0.2.1"
...@@ -4,5 +4,5 @@ ...@@ -4,5 +4,5 @@
# Copyright (c) Juelich Supercomputing Centre (JSC). # Copyright (c) Juelich Supercomputing Centre (JSC).
# Distributed under the terms of the Modified BSD License. # Distributed under the terms of the Modified BSD License.
version_info = (0, 2, 0, 'dev') version_info = (0, 2, 1, 'dev')
__version__ = ".".join(map(str, version_info)) __version__ = ".".join(map(str, version_info))
...@@ -91,9 +91,9 @@ setup_args = dict( ...@@ -91,9 +91,9 @@ setup_args = dict(
include_package_data = True, include_package_data = True,
install_requires = [ install_requires = [
'ipywidgets>=7.0.0', 'ipywidgets>=7.0.0',
'psutil==5.7.0', 'psutil>=4.0.0',
'twisted>=19.2.1', 'twisted>=19.2.1',
'wslink==0.1.13', 'wslink>=0.1.13',
], ],
extras_require = { extras_require = {
'test': [ 'test': [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment