Skip to content

Commit

Permalink
Merge pull request #145 from juhasch/fix/extensions_path
Browse files Browse the repository at this point in the history
Bump to 0.6.1
  • Loading branch information
juhasch authored Nov 14, 2022
2 parents 6dce91f + aff7ade commit af0845c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
commit = True
message = release {new_version}
tag = False
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ the excellent [conda-forge](https://conda-forge.github.io/)
For those not using conda, the installation has two steps:

1. Installing the pip package. This should be as simple as

pip install jupyter_nbextensions_configurator

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

0.6.1
-----
* Remove scripts from setup.py

0.6.0
-----
* Support nbclassic.
Expand Down
23 changes: 11 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@


def main():

setup(
name='jupyter_nbextensions_configurator',
description=("jupyter serverextension providing configuration "
Expand All @@ -24,30 +23,30 @@ def main():
file, the interface also provides controls to configure the nbextensions'
options.
""",
version='0.6.0',
version='0.6.1',
author='jcb91, jupyter-contrib developers',
author_email='[email protected]',
url=('https://github.com/'
'jupyter-contrib/jupyter_nbextensions_configurator'),
download_url=('https://github.com/'
'jupyter-contrib/jupyter_nbextensions_configurator/'
'tarball/0.6.0'),
'tarball/0.6.1'),
keywords=['Jupyter', 'notebook'],
license='BSD 3-clause',
platforms=['any'],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
data_files=[
("etc/jupyter/nbconfig/notebook.d", [
"jupyter-config/nbconfig/notebook.d/jupyter_nbextensions_configurator.json"
]),
("etc/jupyter/nbconfig/tree.d", [
"jupyter-config/nbconfig/tree.d/jupyter_nbextensions_configurator.json"
]),
("etc/jupyter/jupyter_notebook_config.d", [
"jupyter-config/jupyter_notebook_config.d/jupyter_nbextensions_configurator.json"
])
("etc/jupyter/nbconfig/notebook.d", [
"jupyter-config/nbconfig/notebook.d/jupyter_nbextensions_configurator.json"
]),
("etc/jupyter/nbconfig/tree.d", [
"jupyter-config/nbconfig/tree.d/jupyter_nbextensions_configurator.json"
]),
("etc/jupyter/jupyter_notebook_config.d", [
"jupyter-config/jupyter_notebook_config.d/jupyter_nbextensions_configurator.json"
])
],
py_modules=[
os.path.splitext(os.path.basename(path))[0]
Expand Down
2 changes: 1 addition & 1 deletion src/jupyter_nbextensions_configurator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
def json_errors(method):
return method

__version__ = '0.4.1'
__version__ = '0.6.1'

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

Expand Down

0 comments on commit af0845c

Please sign in to comment.