Skip to content

Commit e37155e

Browse files
committed
Release 0.5.8
Signed-off-by: martinRenou <[email protected]>
1 parent 1f71bfd commit e37155e

File tree

6 files changed

+21
-20
lines changed

6 files changed

+21
-20
lines changed

README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,19 @@ jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter-matplot
6767
Versions lookup table:
6868

6969

70-
| `ipympl` | `jupyter-matplotlib` | `JupyterLab version` |
71-
|----------|----------------------|----------------------|
72-
| 0.5.7 | 0.7.3 | 1 or 2 |
73-
| ... | ... | ... |
74-
| 0.5.3 | 0.7.2 | 1 or 2 |
75-
| 0.5.2 | 0.7.1 | 1 |
76-
| 0.5.1 | 0.7.0 | 1 |
77-
| 0.5.0 | 0.6.0 | 1 |
78-
| 0.4.0 | 0.5.0 | 1 |
79-
| 0.3.3 | 0.4.2 | 1 |
80-
| 0.3.2 | 0.4.1 | 1 |
81-
| 0.3.1 | 0.4.0 | 0 or 1 |
70+
| `ipympl` | `jupyter-matplotlib` | `JupyterLab` | `Matplotlib` |
71+
|----------|----------------------|--------------|--------------|
72+
| 0.5.8 | 0.7.4 | 1 or 2 | 3.3.1 |
73+
| 0.5.7 | 0.7.3 | 1 or 2 | 3.2.* |
74+
| ... | ... | ... | |
75+
| 0.5.3 | 0.7.2 | 1 or 2 | |
76+
| 0.5.2 | 0.7.1 | 1 | |
77+
| 0.5.1 | 0.7.0 | 1 | |
78+
| 0.5.0 | 0.6.0 | 1 | |
79+
| 0.4.0 | 0.5.0 | 1 | |
80+
| 0.3.3 | 0.4.2 | 1 | |
81+
| 0.3.2 | 0.4.1 | 1 | |
82+
| 0.3.1 | 0.4.0 | 0 or 1 | |
8283

8384
### For a development installation (requires nodejs):
8485

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ channels:
44
dependencies:
55
- numpy
66
- matplotlib-base>=2.2.2
7-
- ipympl=0.5.7
7+
- ipympl=0.5.8
88
- widgetsnbextension

ipympl/_version.py

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

ipympl/backend_nbagg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from ipywidgets import DOMWidget, widget_serialization
1111
from traitlets import (
12-
Unicode, Bool, CInt, Float, List, Any, Instance, CaselessStrEnum, Enum,
12+
Unicode, Bool, CInt, Float, List, Instance, CaselessStrEnum, Enum,
1313
default
1414
)
1515

js/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-matplotlib",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"description": "Matplotlib Jupyter Interactive Widget",
55
"author": "Matplotlib Development team",
66
"license": "BSD-3-Clause",

0 commit comments

Comments
 (0)