Skip to content

Commit 97c7455

Browse files
committed
Release 0.2.4 on PyPI
1 parent 087ada0 commit 97c7455

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

jupyterlab_gitplus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ def _jupyter_server_extension_paths():
44
}]
55

66

7-
__version__ = "0.2.3"
7+
__version__ = "0.2.4"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,24 +53,21 @@
5353
'jupyterlab',
5454
'gitpython',
5555
'requests',
56-
'urllib3'
56+
'urllib3',
57+
'jupyter_packaging'
5758
]
5859
)
5960

6061

61-
try:
62-
from jupyter_packaging import (
63-
wrap_installers,
64-
npm_builder,
65-
get_data_files
66-
)
67-
post_develop = npm_builder(
68-
build_cmd="install:extension", source_dir="src", build_dir=lab_path
69-
)
70-
setup_args['cmdclass'] = wrap_installers(post_develop=post_develop)
71-
setup_args['data_files'] = get_data_files(data_files_spec)
72-
except ImportError as e:
73-
pass
62+
from jupyter_packaging import (
63+
wrap_installers,
64+
npm_builder,
65+
get_data_files
66+
)
67+
68+
post_develop = npm_builder(build_cmd="install:extension", source_dir="src", build_dir=lab_path)
69+
setup_args['cmdclass'] = wrap_installers(post_develop=post_develop)
70+
setup_args['data_files'] = get_data_files(data_files_spec)
7471

7572
if __name__ == "__main__":
7673
setup(**setup_args)

0 commit comments

Comments
 (0)