Skip to content

Commit

Permalink
Release 0.5.8
Browse files Browse the repository at this point in the history
Signed-off-by: martinRenou <martin.renou@gmail.com>
  • Loading branch information
martinRenou committed Sep 11, 2020
1 parent 1f71bfd commit e37155e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 20 deletions.
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,19 @@ jupyter labextension install @jupyter-widgets/jupyterlab-manager jupyter-matplot
Versions lookup table:


| `ipympl` | `jupyter-matplotlib` | `JupyterLab version` |
|----------|----------------------|----------------------|
| 0.5.7 | 0.7.3 | 1 or 2 |
| ... | ... | ... |
| 0.5.3 | 0.7.2 | 1 or 2 |
| 0.5.2 | 0.7.1 | 1 |
| 0.5.1 | 0.7.0 | 1 |
| 0.5.0 | 0.6.0 | 1 |
| 0.4.0 | 0.5.0 | 1 |
| 0.3.3 | 0.4.2 | 1 |
| 0.3.2 | 0.4.1 | 1 |
| 0.3.1 | 0.4.0 | 0 or 1 |
| `ipympl` | `jupyter-matplotlib` | `JupyterLab` | `Matplotlib` |
|----------|----------------------|--------------|--------------|
| 0.5.8 | 0.7.4 | 1 or 2 | 3.3.1 |

This comment has been minimized.

Copy link
@ianhi

ianhi Sep 11, 2020

Collaborator

This may be easy to misinterpreteas requiring this version of matplotlib?

What about
0.5.8 >=3
0.5.7 <3.3

though it's not obvious that that is more clear either...

| 0.5.7 | 0.7.3 | 1 or 2 | 3.2.* |
| ... | ... | ... | |
| 0.5.3 | 0.7.2 | 1 or 2 | |
| 0.5.2 | 0.7.1 | 1 | |
| 0.5.1 | 0.7.0 | 1 | |
| 0.5.0 | 0.6.0 | 1 | |
| 0.4.0 | 0.5.0 | 1 | |
| 0.3.3 | 0.4.2 | 1 | |
| 0.3.2 | 0.4.1 | 1 | |
| 0.3.1 | 0.4.0 | 0 or 1 | |

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

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ channels:
dependencies:
- numpy
- matplotlib-base>=2.2.2
- ipympl=0.5.7
- ipympl=0.5.8
- widgetsnbextension
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, 5, 7)
version_info = (0, 5, 8)
__version__ = '.'.join(map(str, version_info))
2 changes: 1 addition & 1 deletion ipympl/backend_nbagg.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from ipywidgets import DOMWidget, widget_serialization
from traitlets import (
Unicode, Bool, CInt, Float, List, Any, Instance, CaselessStrEnum, Enum,
Unicode, Bool, CInt, Float, List, Instance, CaselessStrEnum, Enum,
default
)

Expand Down
8 changes: 4 additions & 4 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyter-matplotlib",
"version": "0.7.3",
"version": "0.7.4",
"description": "Matplotlib Jupyter Interactive Widget",
"author": "Matplotlib Development team",
"license": "BSD-3-Clause",
Expand Down

0 comments on commit e37155e

Please sign in to comment.