File: .travis.yml

package info (click to toggle)
pysoundfile 0.10.1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 284 kB
  • sloc: python: 1,773; makefile: 156; sh: 21
file content (23 lines) | stat: -rw-r--r-- 461 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6"
  - "nightly"
  - "pypy-5.3.1"
  - "pypy-5.4.1"
  # TODO: Enable pypy3 once NumPy is working there, see
  # https://bitbucket.org/pypy/pypy/issues/1567/
  #- "pypy3"
addons:
  apt:
    packages:
    - libsndfile1
install:
  - "if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then pip install git+https://bitbucket.org/pypy/numpy.git ; fi"
script:
  - python setup.py test