Skip to content

Commit d94a330

Browse files
committed
Release 0.3.0
1 parent b7bebb7 commit d94a330

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Diff for: README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# jupyter-matplotlib
22

33
[![Version](https://img.shields.io/pypi/v/ipympl.svg)](https://pypi.python.org/pypi/ipympl)
4-
[![Binder](https://img.shields.io/badge/launch-binder-brightgreen.svg)](https://mybinder.org/v2/gh/matplotlib/jupyter-matplotlib/master?filepath=examples)
4+
[![Binder](https://img.shields.io/badge/launch-binder-brightgreen.svg)](https://mybinder.org/v2/gh/matplotlib/jupyter-matplotlib/stable?filepath=examples)
55
[![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)
66

77
Leveraging the Jupyter interactive widgets framework, jupyter-matplotlib
@@ -30,8 +30,10 @@ To install `ipympl` with conda:
3030

3131
```bash
3232
conda install -c conda-forge ipympl
33+
3334
# If using the Notebook
3435
conda install -c conda-forge widgetsnbextension
36+
3537
# If using JupyterLab
3638
conda install nodejs
3739
jupyter labextension install @jupyter-widgets/jupyterlab-manager
@@ -42,6 +44,7 @@ To install `ipympl` with pip:
4244

4345
```bash
4446
pip install ipympl
47+
4548
# If using JupyterLab
4649
# Install nodejs: https://nodejs.org/en/download/
4750
jupyter labextension install @jupyter-widgets/jupyterlab-manager

Diff for: environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ channels:
33
- conda-forge
44
dependencies:
55
- numpy
6-
- matplotlib=2.2.2
7-
- ipympl=0.2.0
6+
- matplotlib-base>=2.2.2
7+
- ipympl=0.3.0

Diff for: ipympl/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 2, 1)
1+
version_info = (0, 3, 0)
22
__version__ = '.'.join(map(str, version_info))

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def run(self):
150150
'version': version_ns['__version__'],
151151
'description': 'Matplotlib Jupyter Extension',
152152
'long_description': LONG_DESCRIPTION,
153-
'License': 'BSD License',
153+
'license': 'BSD License',
154154
'include_package_data': True,
155155
'data_files': get_data_files(),
156156
'install_requires': [

0 commit comments

Comments
 (0)