Skip to content

Commit

Permalink
remove entrypoint, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Feb 2, 2020
1 parent 8db1a52 commit 50d2e38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lantern/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@


__all__ = ['plot', 'figure', 'grids', 'data', 'extensions', 'widgets'] # noqa: F405
__version__ = '0.1.5'
__version__ = '0.1.6'
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
],
}
)

0 comments on commit 50d2e38

Please sign in to comment.