We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c1b35e commit f1e8544Copy full SHA for f1e8544
chapter6/solutions/sierpinski.png
169 Bytes
run.bash
@@ -0,0 +1,13 @@
1
+#!/bin/bash
2
+
3
+set -e
4
5
+python3 -c "import sys; print(sys.version)" > versions.log
6
+python3 -c "import sympy; print(sympy.__version__)" >> versions.log
7
+python3 -c "import matplotlib; print(matplotlib.__version__)" >> versions.log
8
9
+for dir in 'chapter1' 'chapter2' 'chapter3' 'chapter4' 'chapter5' 'chapter6' 'chapter7'; do
10
+ pushd $dir/solutions
11
+ ./run.bash
12
+ popd
13
+done
0 commit comments