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 9
9
"""
10
10
11
11
module_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 4
4
# Copyright (c) The bqplot Development Team.
5
5
# Distributed under the terms of the Modified BSD License.
6
6
7
- __version__ = "0.1.0 "
7
+ __version__ = "0.1.0a0 "
Original file line number Diff line number Diff line change 4
4
5
5
from bqplot import Scatter , Lines
6
6
7
- from ._version import __version__
7
+ from ._frontend import module_version
8
8
9
9
10
10
__all__ = ['ScatterGL' , 'LinesGL' ]
@@ -16,8 +16,8 @@ class ScatterGL(Scatter):
16
16
_model_name = Unicode ('ScatterGLModel' ).tag (sync = True )
17
17
_model_module = Unicode ('bqplot-gl' ).tag (sync = True )
18
18
_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 )
21
21
22
22
23
23
@register
@@ -26,5 +26,5 @@ class LinesGL(Lines):
26
26
_model_name = Unicode ('LinesGLModel' ).tag (sync = True )
27
27
_view_module = Unicode ('bqplot-gl' ).tag (sync = True )
28
28
_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 1
1
{
2
2
"name" : " bqplot-gl" ,
3
- "version" : " 0.1.0" ,
3
+ "version" : " 0.1.0-alpha.0 " ,
4
4
"description" : " Plugin to bqplot powered by WebGL." ,
5
5
"keywords" : [
6
6
" jupyter" ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ classifiers = [
37
37
dependencies = [
38
38
" bqplot>=0.13.0a0,<0.14" ,
39
39
]
40
- version = " 0.1.0 "
40
+ version = " 0.1.0a0 "
41
41
42
42
[project .license ]
43
43
file = " LICENSE"
@@ -85,7 +85,7 @@ field = [
85
85
]
86
86
87
87
[tool .tbump .version ]
88
- current = " 0.1.0 "
88
+ current = " 0.1.0a0 "
89
89
regex = " (?P<major>\\ d+)\\ .(?P<minor>\\ d+)\\ .(?P<patch>\\ d+)((?P<channel>a|b|rc|.dev)(?P<release>\\ d+))?"
90
90
91
91
[tool .tbump .git ]
You can’t perform that action at this time.
0 commit comments