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 11#!/usr/bin/env python
2-
32import argparse as argpar
43import json
54import subprocess
87
98VERSION_PY = 'jupyterlab_git/_version.py'
109
11- def buildLabextensionBundle ():
10+ def prepLabextensionBundle ():
1211 subprocess .run (['jlpm' , 'clean:slate' ])
13- subprocess .run (['jlpm' , 'build:labextension' ])
1412
1513def tag (version , dryrun = False , kind = None ):
1614 """git tagging
@@ -73,8 +71,8 @@ def serverExtensionVersion():
7371 return get_version (VERSION_PY )
7472
7573def doRelease (test = False ):
76- # do a clean build of the bundle
77- buildLabextensionBundle ()
74+ # prep the build area for the labextension bundle
75+ prepLabextensionBundle ()
7876
7977 # treat the serverextension version as the "real" single source of truth
8078 version = serverExtensionVersion ()
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ def runPackLabextension():
6767 'Programming Language :: Python :: 3.7' ,
6868 'Framework :: Jupyter' ,
6969 ],
70- # include_package_data = True,
7170 install_requires = [
7271 'notebook' ,
7372 'nbdime >= 1.1.0' ,
You can’t perform that action at this time.
0 commit comments