mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 09:31:39 -05:00

From emacs-26 on, in emacs-git-snapshot, openssl is not used at all and gnutls-bin is required for cask to function.
23 lines
624 B
YAML
23 lines
624 B
YAML
language: python
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gnutls-bin
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
before_install:
|
|
- curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
|
|
- evm install $EVM_EMACS --use --skip
|
|
- evm list
|
|
- cask install
|
|
install:
|
|
- sudo pip install jupyter==$JUPYTER
|
|
env:
|
|
- EVM_EMACS=emacs-24.4-travis IPYCMD=jupyter JUPYTER=1.0.0
|
|
- EVM_EMACS=emacs-25.1-travis IPYCMD=jupyter JUPYTER=1.0.0
|
|
- EVM_EMACS=emacs-git-snapshot-travis IPYCMD=jupyter JUPYTER=1.0.0
|
|
script:
|
|
- emacs --version
|
|
- python tools/testein.py --emacs emacs --ipython $(which $IPYCMD)
|