File tree 1 file changed +10
-0
lines changed 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ IPYTHON = env/ipy.$(IPY_VERSION)/bin/ipython
3
3
IPY_VERSION = 0.13.0
4
4
TESTEIN = tools/testein.py
5
5
TESTEIN_OPTS =
6
+ PKG_INFO = \
7
+ grep '^Version' \
8
+ env/ipy.$(IPY_VERSION ) /lib/python*/site-packages/*.egg-info/PKG-INFO \
9
+ | sed -r 's%.*/site-packages/(.*)-py.*\.egg-info/.*:Version: (.*)$$% \1\t\2%'
6
10
7
11
testein : test-requirements
8
12
${MAKE} testein-1
@@ -16,6 +20,11 @@ clean: ert-clean
16
20
purge : clean
17
21
rm -rf env log
18
22
23
+ pkg-info :
24
+ @echo " **************************************************"
25
+ @echo " Installed Python Packages"
26
+ $(PKG_INFO )
27
+
19
28
submodule :
20
29
git submodule update --init
21
30
34
43
mkdir log
35
44
36
45
test-requirements : ert-compile env-ipy.$(IPY_VERSION )
46
+ ${MAKE} pkg-info
37
47
38
48
travis-ci-testein : test-requirements
39
49
${MAKE} testein-2
You can’t perform that action at this time.
0 commit comments