Skip to content

Commit a593007

Browse files
author
Steven Silvester
committed
fix package data name
1 parent 4dc11c7 commit a593007

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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 = (1, 0, 0, 'rc2')
12+
version_info = (1, 0, 0, 'rc3')
1313
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
version = VERSION,
1919
packages = find_packages('.'),
2020
package_data = {
21-
'notebook' : ['templates/*'],
22-
'notebook.i18n': ['*/LC_MESSAGES/*.*'],
23-
'notebook.services.api': ['api.yaml'],
21+
'jupyter_server' : ['templates/*'],
22+
'jupyter_server.i18n': ['*/LC_MESSAGES/*.*'],
23+
'jupyter_server.services.api': ['api.yaml'],
2424
},
2525
author = 'Jupyter Development Team',
2626
author_email = '[email protected]',

0 commit comments

Comments
 (0)