Skip to content

Commit

Permalink
Merge pull request #263 from bollwyvl/clean-up-sdist
Browse files Browse the repository at this point in the history
Reduce (and test) sdist size
  • Loading branch information
manics authored Apr 18, 2021
2 parents 7a70079 + 33b424c commit 708557a
Show file tree
Hide file tree
Showing 5 changed files with 3,086 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
pip install jupyter_packaging wheel jupyterlab~=3.0
python setup.py sdist bdist_wheel
- name: Check dist sizes
run: |
set -eux
ls -lathr dist
[[ $(find dist -type f -size +200k) ]] && exit 1 || echo ok
- name: Javascript package
run: |
mkdir jsdist
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ package-lock.json
jupyter_server_proxy/labextension
.ipynb_checkpoints/
MANIFEST
build/
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
recursive-include jupyterlab-server-proxy *
include LICENSE
recursive-include jupyterlab-server-proxy *
prune jupyterlab-server-proxy/node_modules
1 change: 0 additions & 1 deletion jupyterlab-server-proxy/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ lib/
node_modules/
*.egg-info/
.ipynb_checkpoints
yarn.lock
../.idea/
Loading

0 comments on commit 708557a

Please sign in to comment.