Skip to content

Commit

Permalink
Release 0.12.21
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Jan 14, 2021
1 parent b592e30 commit a401d09
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ For a development installation (requires npm (version >= 3.8) and node (version
$ git clone https://github.com/bqplot/bqplot.git
$ cd bqplot
$ pip install -e .
$ jupyter nbextension install --py --symlink --sys-prefix bqplot
$ jupyter nbextension install --py --overwrite --symlink --sys-prefix bqplot
$ jupyter nbextension enable --py --sys-prefix bqplot
```

Expand Down Expand Up @@ -126,7 +126,7 @@ To get started with using `bqplot`, check out the full documentation

https://bqplot.readthedocs.io/

## Install a previous bqplot version
## Install a previous bqplot version (Only for JupyterLab <= 2)

In order to install a previous bqplot version, you need to know which front-end version (JavaScript) matches with the back-end version (Python).

Expand Down
4 changes: 2 additions & 2 deletions bqplot/_version.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version_info = (0, 12, 20, 'final', 0)
version_info = (0, 12, 21, 'final', 0)

_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}

__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))

__frontend_version__ = '^0.5.20'
__frontend_version__ = '^0.5.21'
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bqplot",
"version": "0.5.20",
"version": "0.5.21",
"description": "bqplot",
"keywords": [
"jupyter",
Expand Down

0 comments on commit a401d09

Please sign in to comment.