We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca900d commit 9487128Copy full SHA for 9487128
graphviz.mk
@@ -0,0 +1,8 @@
1
+pygraphviz:
2
+ @git clone https://github.com/pygraphviz/pygraphviz
3
+ @. $(VENV)/bin/activate && \
4
+ cd pygraphviz && \
5
+ git checkout 6c0876c9bb158452f1193d562531d258e9193f2e && \
6
+ git apply ../patches/graphviz-includes.diff && \
7
+ python setup.py install
8
+ @rm -rf pygraphviz
types.mk
@@ -0,0 +1,12 @@
+$(MYPY):
+ git clone https://github.com/JukkaL/mypy.git
+ . $(VENV)/bin/activate && \
+ cd mypy && $(PYTHON) setup.py install
+ rm -rf mypy
+
+types: $(MYPY)
+ @echo "\nChecking types ...\n"
9
10
+ for FILE in ./lib/*.py; do mypy $$FILE; done
11
12
+check: flakes types
0 commit comments