Skip to content

Commit

Permalink
Release 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Dec 8, 2020
1 parent b4e0474 commit 907db90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion jupyter_server/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.

version_info = (1, 0, 8, '')
version_info = (1, 0, 9, '')
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import pathlib
from setuptools import setup
from setupbase import (
get_version, find_packages
)
from setuptools import setup, find_packages
from setupbase import get_version

here = pathlib.Path('.')
version_path = here.joinpath('jupyter_server', '_version.py')
Expand All @@ -17,7 +15,7 @@
long_description = README,
long_description_content_type='text/markdown',
version = VERSION,
packages = find_packages('.'),
packages = find_packages('.', exclude=["tests*"]),
include_package_data = True,
author = 'Jupyter Development Team',
author_email = 'jupyter@googlegroups.com',
Expand Down

0 comments on commit 907db90

Please sign in to comment.