From aff7ade4bae176b2582e2d5ab15dd358ecb070aa Mon Sep 17 00:00:00 2001 From: Juergen Hasch Date: Mon, 14 Nov 2022 21:30:26 +0100 Subject: [PATCH] Typo --- .bumpversion.cfg | 2 +- README.md | 6 ++++- setup.py | 23 +++++++++---------- .../__init__.py | 2 +- 4 files changed, 18 insertions(+), 15 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6b82213..45a3f40 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True message = release {new_version} tag = False diff --git a/README.md b/README.md index 32d654e..1a5a93f 100644 --- a/README.md +++ b/README.md @@ -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` @@ -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. diff --git a/setup.py b/setup.py index 3940825..31804be 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,6 @@ def main(): - setup( name='jupyter_nbextensions_configurator', description=("jupyter serverextension providing configuration " @@ -24,14 +23,14 @@ 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='joshuacookebarnes@gmail.com', 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'], @@ -39,15 +38,15 @@ def main(): 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] diff --git a/src/jupyter_nbextensions_configurator/__init__.py b/src/jupyter_nbextensions_configurator/__init__.py index 331e23a..59db5af 100644 --- a/src/jupyter_nbextensions_configurator/__init__.py +++ b/src/jupyter_nbextensions_configurator/__init__.py @@ -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?://')