File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 99
1010# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.
1111
12- version_info = (1 , 0 , 8 , '' )
12+ version_info = (1 , 0 , 9 , '' )
1313__version__ = '.' .join (map (str , version_info [:3 ])) + '' .join (version_info [3 :])
Original file line number Diff line number Diff line change 11import pathlib
2- from setuptools import setup
3- from setupbase import (
4- get_version , find_packages
5- )
2+ from setuptools import setup , find_packages
3+ from setupbase import get_version
64
75here = pathlib .Path ('.' )
86version_path = here .joinpath ('jupyter_server' , '_version.py' )
1715 long_description = README ,
1816 long_description_content_type = 'text/markdown' ,
1917 version = VERSION ,
20- packages = find_packages ('.' ),
18+ packages = find_packages ('.' , exclude = [ "tests*" ] ),
2119 include_package_data = True ,
2220 author = 'Jupyter Development Team' ,
2321 author_email = 'jupyter@googlegroups.com' ,
You can’t perform that action at this time.
0 commit comments