diff options
-rw-r--r-- | Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -3,8 +3,7 @@ export KILL_SCILAB="from scilab2py import kill_scilab; kill_scilab()" -all: - make clean +all: clean python setup.py install clean: @@ -13,17 +12,15 @@ clean: find . -name "*.pyc" -o -name "*.py,cover"| xargs rm -f python -c $(KILL_SCILAB) -release: - make clean +release: clean pip install wheel python setup.py register python setup.py bdist_wheel upload python setup.py sdist --formats=gztar,zip upload git tag v`python -c "import scilab_kernel;print(scilab_kernel.__version__)"` - git push origin master --all + git push origin --all -test: - make clean +test: clean python setup.py install cd ~; ipython qtconsole --kernel=scilab make clean |