Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Jul 4, 2019
1 parent b7bebb7 commit d94a330
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion ipympl/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 2, 1)
version_info = (0, 3, 0)
__version__ = '.'.join(map(str, version_info))
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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': [
Expand Down

0 comments on commit d94a330

Please sign in to comment.