Skip to content

Commit 5f49f64

Browse files
committed
Release
1 parent b7d7214 commit 5f49f64

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

jupyter_server/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

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

12-
version_info = (0, 3, 0, '')
12+
version_info = (1, 0, 0, 'rc1')
1313
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pathlib
2-
from setuptools import setup
3-
from jupyter_packaging import (
2+
from setuptools import setup, find_packages
3+
from setupbase import (
44
get_version
55
)
66

@@ -17,6 +17,7 @@
1717
description = 'The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.',
1818
long_description = README,
1919
version = VERSION,
20+
packages = find_packages('.'),
2021
author = 'Jupyter Development Team',
2122
author_email = '[email protected]',
2223
url = 'http://jupyter.org',

0 commit comments

Comments
 (0)