Skip to content

Commit ae603fd

Browse files
committed
removed now redundant labext build from release.py
1 parent 5f7701a commit ae603fd

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

release.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env python
2-
32
import argparse as argpar
43
import json
54
import subprocess
@@ -8,9 +7,8 @@
87

98
VERSION_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

1513
def tag(version, dryrun=False, kind=None):
1614
"""git tagging
@@ -73,8 +71,8 @@ def serverExtensionVersion():
7371
return get_version(VERSION_PY)
7472

7573
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()
7876

7977
# treat the serverextension version as the "real" single source of truth
8078
version = serverExtensionVersion()

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)