diff --git a/docs/conf.py b/docs/conf.py index 2b4f2c8..0e574b3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = 'v0.1.5' +version = 'v0.1.6' # The full version, including alpha/beta/rc tags. -release = 'v0.1.5' +release = 'v0.1.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/lantern/__init__.py b/lantern/__init__.py index b736058..71f2d67 100644 --- a/lantern/__init__.py +++ b/lantern/__init__.py @@ -7,4 +7,4 @@ __all__ = ['plot', 'figure', 'grids', 'data', 'extensions', 'widgets'] # noqa: F405 -__version__ = '0.1.5' +__version__ = '0.1.6' diff --git a/setup.py b/setup.py index 1fc61c7..6038ddf 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='pylantern', - version='0.1.5', + version='0.1.6', description='Analytics library', long_description=long_description, url='https://github.com/timkpaine/lantern', @@ -38,10 +38,4 @@ 'lantern/extensions/publish/templates/*']}, include_package_data=True, zip_safe=False, - entry_points={ - 'nbconvert.exporters': [ - 'pdf_hidecode = lantern.extensions.hideinput.exporters:PDFHideCodeExporter', - 'html_hidecode = lantern.extensions.hideinput.exporters:HTMLHideCodeExporter', - ], - } )