Print versions of software used in Travis output

This commit is contained in:
Stefan van der Walt
2014-05-05 16:33:46 +02:00
parent 9142c51cbb
commit b03d59f736
3 changed files with 29 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env python
from __future__ import print_function
import numpy as np
import scipy as sp
import matplotlib as mpl
import six
for m in (np, sp, mpl, six):
print(m.__name__.rjust(10), ' ', m.__version__)