From d94a3308a1ad1c5bdba6447652f3eccb6aaefeb6 Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Thu, 4 Jul 2019 15:22:19 +0200 Subject: [PATCH] Release 0.3.0 --- README.md | 5 ++++- environment.yml | 4 ++-- ipympl/_version.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bd33c2c9..3042b9e1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # jupyter-matplotlib [![Version](https://img.shields.io/pypi/v/ipympl.svg)](https://pypi.python.org/pypi/ipympl) -[![Binder](https://img.shields.io/badge/launch-binder-brightgreen.svg)](https://mybinder.org/v2/gh/matplotlib/jupyter-matplotlib/master?filepath=examples) +[![Binder](https://img.shields.io/badge/launch-binder-brightgreen.svg)](https://mybinder.org/v2/gh/matplotlib/jupyter-matplotlib/stable?filepath=examples) [![Join the Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jupyter-widgets/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Leveraging the Jupyter interactive widgets framework, jupyter-matplotlib @@ -30,8 +30,10 @@ To install `ipympl` with conda: ```bash conda install -c conda-forge ipympl + # If using the Notebook conda install -c conda-forge widgetsnbextension + # If using JupyterLab conda install nodejs jupyter labextension install @jupyter-widgets/jupyterlab-manager @@ -42,6 +44,7 @@ To install `ipympl` with pip: ```bash pip install ipympl + # If using JupyterLab # Install nodejs: https://nodejs.org/en/download/ jupyter labextension install @jupyter-widgets/jupyterlab-manager diff --git a/environment.yml b/environment.yml index fd3ccdc6..f9fcd573 100644 --- a/environment.yml +++ b/environment.yml @@ -3,5 +3,5 @@ channels: - conda-forge dependencies: - numpy - - matplotlib=2.2.2 - - ipympl=0.2.0 + - matplotlib-base>=2.2.2 + - ipympl=0.3.0 diff --git a/ipympl/_version.py b/ipympl/_version.py index 87aaa02a..ce79add3 100644 --- a/ipympl/_version.py +++ b/ipympl/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 2, 1) +version_info = (0, 3, 0) __version__ = '.'.join(map(str, version_info)) diff --git a/setup.py b/setup.py index 3119827f..84d0d1f1 100644 --- a/setup.py +++ b/setup.py @@ -150,7 +150,7 @@ def run(self): 'version': version_ns['__version__'], 'description': 'Matplotlib Jupyter Extension', 'long_description': LONG_DESCRIPTION, - 'License': 'BSD License', + 'license': 'BSD License', 'include_package_data': True, 'data_files': get_data_files(), 'install_requires': [