Skip to content

Commit 67e5fed

Browse files
author
Juan Luis Cano Rodríguez
authored
Merge pull request #169 from Juanlu001/modernize-infrastructure
Modernize infrastructure
2 parents 6617d0e + ea376e5 commit 67e5fed

2 files changed

Lines changed: 15 additions & 19 deletions

File tree

.travis.yml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,20 @@ language: python
22
python:
33
- "2.7"
44
- "3.3"
5-
install:
6-
# We do this conditionally because it saves us some downloading if the
7-
# version is the same.
8-
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
9-
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
10-
else
11-
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
12-
fi
13-
- bash miniconda.sh -b -p $HOME/miniconda
14-
- export PATH="$HOME/miniconda/bin:$PATH"
15-
- hash -r
16-
- conda config --set always_yes yes --set changeps1 no
17-
- conda update -q conda
18-
# Useful for debugging any issues with conda
19-
- conda info -a
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
- "3.7-dev"
9+
- "pypy3"
10+
11+
matrix:
12+
allow_failures:
13+
- python: "pypy3"
14+
- python: "3.7-dev"
2015

21-
# Replace dep1 dep2 ... with your dependencies
22-
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy nose ipython
23-
- source activate test-environment
24-
- python setup.py install
16+
install:
17+
- python -m pip install numpy ipython
18+
- python -m pip install .
2519
script:
2620
- make test
2721

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ cleanup.
448448

449449
`Muhammad Haseeb Tariq <https://github.com/mhaseebtariq>`_ fixed issue #152, which made the whole interpreter hang on functions that launched an exception.
450450

451+
`Juan Luis Cano <https://github.com/Juanlu001>`_ modernized the infrastructure and helped with various things.
452+
451453
=========
452454
License
453455
=========

0 commit comments

Comments
 (0)