mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 18:25:32 +08:00
be7154f23d
Skip doc build on 3.2 Skip doc build on 3.2 Use block literal Fix html make target Revert change to threshold_isodata Fix skimage.novice and thresholding warnings Fix feature.__init__ __all__ Fix generic.py link Doc reference fixes Fix missing class member warnings Add parallelization to the user guide toc Remove unused automodule directives Fix sub_dirs in gallery_index Remove unused file and fix reference to api/api Add missing links to user guide Use pre-output links to images Recover from Juan's doc 'upgrades'
21 lines
424 B
Makefile
21 lines
424 B
Makefile
.PHONY: all clean test
|
|
|
|
all:
|
|
python setup.py build_ext --inplace
|
|
|
|
clean:
|
|
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" | xargs rm -f
|
|
|
|
test:
|
|
python -c "import skimage, sys, io; sys.exit(skimage.test_verbose())"
|
|
|
|
doctest:
|
|
python -c "import skimage, sys, io; sys.exit(skimage.doctest_verbose())"
|
|
|
|
coverage:
|
|
nosetests skimage --with-coverage --cover-package=skimage
|
|
|
|
html:
|
|
pip install sphinx
|
|
make -C doc html
|