Skip to content
Snippets Groups Projects
Commit 60c0e433 authored by Swen Vermeul's avatar Swen Vermeul
Browse files

Merge branch 'release/0.6.0'

parents a88f9251 97970bdb
No related branches found
Tags 0.6.0
No related merge requests found
Pipeline #2445 passed with warnings
## new in jupyter-openbis-extension 0.6.0
- removed fixed tornado version (5.1.1)
## new in jupyter-openbis-extension 0.5.3
- fixed Windows path
......
......@@ -4,7 +4,7 @@
The jupyter-openbis-extension needs at least **Python 3.3** in order to run. The Jupyter notebook server starts this extension during startup and must therefore run under the same Python version. The kernel can be anything (Python 2.7, Julia, R, Perl...)
This extension has been successfully tested with Safari 12.0.3, Chrome 72.0 and Firefox 66.0. There is a known incompatibility before Firefox 61.0b13.
This extension has been successfully tested with Safari 12.0.3, Chrome 72.0 and Firefox 66.0. There is a known incompatibility before Firefox 61.0b13 with Tornado > 6.x (the webserver used by Jupyter). If you encounter such incompatibilities, try to downgrade to Tornado 5.1.1. However, Tornado 5.1.1 will not work with Jupyter Lab 3.
## Install the extension
......
......@@ -64,4 +64,4 @@ define([
connect: connect
}
}
)
\ No newline at end of file
)
......@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name='jupyter-openbis-extension',
version= '0.5.3',
version= '0.6.0',
author='Swen Vermeul | ID SIS | ETH Zürich',
author_email='swen@ethz.ch',
description='Extension for Jupyter notebooks to connect to openBIS and download/upload datasets, inluding the notebook itself',
......@@ -25,7 +25,7 @@ setup(
'jupyter',
'jupyter-openbis-server>=0.1.4',
'numpy',
'tornado==5.1.1',
'tornado',
],
python_requires=">=3.3",
classifiers=[
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment