Skip to content

Commit 0421afd

Browse files
committed
Merge branch 'fix-travis'
2 parents 203ff99 + d7cab8a commit 0421afd

5 files changed

+25
-9
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ env:
3131
- EIN_TEST_TARGET=travis-ci-zeroein EMACS=emacs-snapshot
3232
matrix:
3333
allow_failures:
34+
# IPY_VERSION=0.12.*
35+
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=0.12.1 EMACS=emacs
36+
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=0.12.0 EMACS=emacs
37+
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=0.12.1 EMACS=emacs24
38+
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=0.12.0 EMACS=emacs24
39+
# EMACS=emacs-snapshot
3440
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=dev EMACS=emacs-snapshot
3541
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=0.13.0 EMACS=emacs-snapshot
3642
- env: EIN_TEST_TARGET=travis-ci-testein IPY_VERSION=0.12.1 EMACS=emacs-snapshot

Makefile

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,28 @@ IPYTHON = env/ipy.$(IPY_VERSION)/bin/ipython
33
IPY_VERSION = 0.13.0
44
TESTEIN = tools/testein.py
55
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%'
610

711
testein: test-requirements
812
${MAKE} testein-1
913

1014
interactive-testein: test-requirements
1115
${MAKE} TESTEIN_OPTS="--no-batch" testein-1
1216

17+
clean: ert-clean
18+
rm -f lisp/*.elc
19+
20+
purge: clean
21+
rm -rf env log
22+
23+
pkg-info:
24+
@echo "**************************************************"
25+
@echo "Installed Python Packages"
26+
$(PKG_INFO)
27+
1328
submodule:
1429
git submodule update --init
1530

@@ -24,16 +39,11 @@ ert-clean:
2439
env-ipy.%:
2540
tools/makeenv.sh env/ipy.$* tools/requirement-ipy.$*.txt
2641

27-
env-clean:
28-
rm -rf env
29-
3042
log:
3143
mkdir log
3244

33-
log-clean:
34-
rm -rf log
35-
3645
test-requirements: ert-compile env-ipy.$(IPY_VERSION)
46+
${MAKE} pkg-info
3747

3848
travis-ci-testein: test-requirements
3949
${MAKE} testein-2

tools/requirement-ipy.0.12.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ipython==0.12
2-
pyzmq
2+
pyzmq==2.2.0.1
33
tornado

tools/requirement-ipy.0.12.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ipython==0.12.1
2-
pyzmq
2+
pyzmq==2.2.0.1
33
tornado

tools/requirement-ipy.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
https://github.com/ipython/ipython/tarball/master
1+
-e git://github.com/ipython/ipython.git#egg=ipython
22
pyzmq
33
tornado
44
jinja2

0 commit comments

Comments
 (0)