File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
SHELL: =bash
2
2
PKG_SLUG: =jupyterlab-quickopen
3
3
PKG_NAME: =jupyterlab_quickopen
4
- CONDA_ENV: =jupyterlab-ext2
4
+ CONDA_ENV: =jupyterlab-quickopen
5
5
6
6
help :
7
7
# http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
@@ -28,8 +28,10 @@ conda-env: ## Make a conda development environment
28
28
jupyter serverextension enable $(PKG_NAME )
29
29
30
30
release : # # Make a release on PyPI and npmjs.org
31
- python setup.py sdist register upload
32
- npm publish --access=public
31
+ source activate $(PKG_SLUG ) && \
32
+ python setup.py sdist && \
33
+ twine upload dist/* .tar.gz
34
+ source activate $(PKG_SLUG ) && npm publish --access=public
33
35
34
36
watch-lab : # # Make a JupyterLab build process watch for extension builds
35
37
source activate $(PKG_SLUG ) && jupyter lab --watch
Original file line number Diff line number Diff line change 2
2
flake8
3
3
nodejs
4
4
pytest
5
+ twine
You can’t perform that action at this time.
0 commit comments