Ver Fonte

work around limitation in jupyter_packaging for nested files

Steven Silvester há 4 anos atrás
pai
commit
10bc60bff1

+ 0 - 1
MANIFEST.in

@@ -2,7 +2,6 @@ include package.json
 include LICENSE
 include CONTRIBUTING.md
 include README.md
-include setupbase.py
 
 # Documentation
 graft docs

+ 0 - 0
jupyter-config/jupyter_notebook_config.d/jupyterlab.json → jupyter-notebook-config/jupyterlab.json


+ 0 - 0
jupyter-config/jupyter_server_config.d/jupyterlab.json → jupyter-server-config/jupyterlab.json


+ 0 - 2
scripts/ci_install.sh

@@ -25,8 +25,6 @@ jlpm versions
 jlpm config current
 jupyter server extension list 1>serverextensions 2>&1
 cat serverextensions
-ls /opt/hostedtoolcache/Python/3.8.5/x64/etc/jupyter/jupyter_server_config.d/
-ls /opt/hostedtoolcache/Python/3.8.5/x64/etc/jupyter/jupyter_notebook_config.d/
 cat serverextensions | grep -i "jupyterlab.*enabled"
 cat serverextensions | grep -i "jupyterlab.*OK"
 

+ 2 - 2
setup.py

@@ -34,9 +34,9 @@ data_files_spec = [
     ('share/jupyter/lab/schemas', '%s/schemas' % NAME, '**'),
     ('share/jupyter/lab/themes', '%s/themes' % NAME, '**'),
     ('etc/jupyter/jupyter_server_config.d',
-     'jupyter-config/jupyter_server_config.d', 'jupyterlab.json'),
+     'jupyter-server-config', 'jupyterlab.json'),
     ('etc/jupyter/jupyter_notebook_config.d',
-     'jupyter-config/jupyter_notebook_config.d', 'jupyterlab.json'),
+     'jupyter-notebook-config', 'jupyterlab.json'),
 ]
 
 package_data_spec = dict()