File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 99"""
1010
1111module_name = "bqplot-gl"
12- module_version = "^0.1.0"
12+ module_version = "^0.1.0-alpha.0 "
Original file line number Diff line number Diff line change 44# Copyright (c) The bqplot Development Team.
55# Distributed under the terms of the Modified BSD License.
66
7- __version__ = "0.1.0 "
7+ __version__ = "0.1.0a0 "
Original file line number Diff line number Diff line change 44
55from bqplot import Scatter , Lines
66
7- from ._version import __version__
7+ from ._frontend import module_version
88
99
1010__all__ = ['ScatterGL' , 'LinesGL' ]
@@ -16,8 +16,8 @@ class ScatterGL(Scatter):
1616 _model_name = Unicode ('ScatterGLModel' ).tag (sync = True )
1717 _model_module = Unicode ('bqplot-gl' ).tag (sync = True )
1818 _view_module = Unicode ('bqplot-gl' ).tag (sync = True )
19- _view_module_version = Unicode ('^' + __version__ ).tag (sync = True )
20- _model_module_version = Unicode ('^' + __version__ ).tag (sync = True )
19+ _view_module_version = Unicode (module_version ).tag (sync = True )
20+ _model_module_version = Unicode (module_version ).tag (sync = True )
2121
2222
2323@register
@@ -26,5 +26,5 @@ class LinesGL(Lines):
2626 _model_name = Unicode ('LinesGLModel' ).tag (sync = True )
2727 _view_module = Unicode ('bqplot-gl' ).tag (sync = True )
2828 _model_module = Unicode ('bqplot-gl' ).tag (sync = True )
29- _view_module_version = Unicode ('^' + __version__ ).tag (sync = True )
30- _model_module_version = Unicode ('^' + __version__ ).tag (sync = True )
29+ _view_module_version = Unicode (module_version ).tag (sync = True )
30+ _model_module_version = Unicode (module_version ).tag (sync = True )
Original file line number Diff line number Diff line change 11{
22 "name" : " bqplot-gl" ,
3- "version" : " 0.1.0" ,
3+ "version" : " 0.1.0-alpha.0 " ,
44 "description" : " Plugin to bqplot powered by WebGL." ,
55 "keywords" : [
66 " jupyter" ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ classifiers = [
3737dependencies = [
3838 " bqplot>=0.13.0a0,<0.14" ,
3939]
40- version = " 0.1.0 "
40+ version = " 0.1.0a0 "
4141
4242[project .license ]
4343file = " LICENSE"
@@ -85,7 +85,7 @@ field = [
8585]
8686
8787[tool .tbump .version ]
88- current = " 0.1.0 "
88+ current = " 0.1.0a0 "
8989regex = " (?P<major>\\ d+)\\ .(?P<minor>\\ d+)\\ .(?P<patch>\\ d+)((?P<channel>a|b|rc|.dev)(?P<release>\\ d+))?"
9090
9191[tool .tbump .git ]
You can’t perform that action at this time.
0 commit comments