-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
correct DFS, proposal type annotations
- Loading branch information
Showing
5 changed files
with
40 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
help: | ||
help:: | ||
@echo "make pycodestyle run pycodestyle on Python source" | ||
@echo "make pylint run pylint on Python source" | ||
|
||
tests: | ||
tests:: | ||
python -m unittest | ||
|
||
pycodestyle: | ||
pycodestyle:: | ||
-@find setup.py tryalgo -type f -name '*.py' | xargs pycodestyle | ||
|
||
pylint: | ||
pylint:: | ||
-@find setup.py tryalgo -type f -name '*.py' | xargs pylint --disable=C0103 -j 4 | ||
|
||
.PHONY: help pycodestyle pylint bin docs | ||
|
||
docs: | ||
docs:: | ||
cd docs/_static && convert logo_W.png logo_B.png +append logo_white.png | ||
sphinx-apidoc -f -o docs/tryalgo tryalgo | ||
sphinx-build docs docs/_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters