Skip to content

Commit af0845c

Browse files
authored
Merge pull request #145 from juhasch/fix/extensions_path
Bump to 0.6.1
2 parents 6dce91f + aff7ade commit af0845c

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.0
2+
current_version = 0.6.1
33
commit = True
44
message = release {new_version}
55
tag = False

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ the excellent [conda-forge](https://conda-forge.github.io/)
4141
For those not using conda, the installation has two steps:
4242

4343
1. Installing the pip package. This should be as simple as
44-
44+
4545
pip install jupyter_nbextensions_configurator
4646

4747
2. Configuring the notebook server to load the server extension. A `jupyter`
@@ -206,6 +206,10 @@ For debugging, useful information can (sometimes) be found by:
206206
Changes
207207
=======
208208

209+
0.6.1
210+
-----
211+
* Remove scripts from setup.py
212+
209213
0.6.0
210214
-----
211215
* Support nbclassic.

setup.py

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212

1313
def main():
14-
1514
setup(
1615
name='jupyter_nbextensions_configurator',
1716
description=("jupyter serverextension providing configuration "
@@ -24,30 +23,30 @@ def main():
2423
file, the interface also provides controls to configure the nbextensions'
2524
options.
2625
""",
27-
version='0.6.0',
26+
version='0.6.1',
2827
author='jcb91, jupyter-contrib developers',
2928
author_email='[email protected]',
3029
url=('https://github.com/'
3130
'jupyter-contrib/jupyter_nbextensions_configurator'),
3231
download_url=('https://github.com/'
3332
'jupyter-contrib/jupyter_nbextensions_configurator/'
34-
'tarball/0.6.0'),
33+
'tarball/0.6.1'),
3534
keywords=['Jupyter', 'notebook'],
3635
license='BSD 3-clause',
3736
platforms=['any'],
3837
packages=find_packages('src'),
3938
package_dir={'': 'src'},
4039
include_package_data=True,
4140
data_files=[
42-
("etc/jupyter/nbconfig/notebook.d", [
43-
"jupyter-config/nbconfig/notebook.d/jupyter_nbextensions_configurator.json"
44-
]),
45-
("etc/jupyter/nbconfig/tree.d", [
46-
"jupyter-config/nbconfig/tree.d/jupyter_nbextensions_configurator.json"
47-
]),
48-
("etc/jupyter/jupyter_notebook_config.d", [
49-
"jupyter-config/jupyter_notebook_config.d/jupyter_nbextensions_configurator.json"
50-
])
41+
("etc/jupyter/nbconfig/notebook.d", [
42+
"jupyter-config/nbconfig/notebook.d/jupyter_nbextensions_configurator.json"
43+
]),
44+
("etc/jupyter/nbconfig/tree.d", [
45+
"jupyter-config/nbconfig/tree.d/jupyter_nbextensions_configurator.json"
46+
]),
47+
("etc/jupyter/jupyter_notebook_config.d", [
48+
"jupyter-config/jupyter_notebook_config.d/jupyter_nbextensions_configurator.json"
49+
])
5150
],
5251
py_modules=[
5352
os.path.splitext(os.path.basename(path))[0]

src/jupyter_nbextensions_configurator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
def json_errors(method):
3535
return method
3636

37-
__version__ = '0.4.1'
37+
__version__ = '0.6.1'
3838

3939
absolute_url_re = re.compile(r'^(f|ht)tps?://')
4040

0 commit comments

Comments
 (0)