File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
-
3
2
import argparse as argpar
4
3
import json
5
4
import subprocess
8
7
9
8
VERSION_PY = 'jupyterlab_git/_version.py'
10
9
11
- def buildLabextensionBundle ():
10
+ def prepLabextensionBundle ():
12
11
subprocess .run (['jlpm' , 'clean:slate' ])
13
- subprocess .run (['jlpm' , 'build:labextension' ])
14
12
15
13
def tag (version , dryrun = False , kind = None ):
16
14
"""git tagging
@@ -73,8 +71,8 @@ def serverExtensionVersion():
73
71
return get_version (VERSION_PY )
74
72
75
73
def doRelease (test = False ):
76
- # do a clean build of the bundle
77
- buildLabextensionBundle ()
74
+ # prep the build area for the labextension bundle
75
+ prepLabextensionBundle ()
78
76
79
77
# treat the serverextension version as the "real" single source of truth
80
78
version = serverExtensionVersion ()
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ def runPackLabextension():
67
67
'Programming Language :: Python :: 3.7' ,
68
68
'Framework :: Jupyter' ,
69
69
],
70
- # include_package_data = True,
71
70
install_requires = [
72
71
'notebook' ,
73
72
'nbdime >= 1.1.0' ,
You can’t perform that action at this time.
0 commit comments