Update versioninfo.py
[PyUPC-EAN.git] / .travis.yml
blob5893442150d7715bb889fe4af9241b224bab049c
1 os:
2   - linux
3 language: 
4   - python
5 python:
6   - "2.7"
7   - "3.4"
8   - "3.5"
9   - "3.6"
10   - "3.7"
11   - "3.8"
12   - "3.8-dev"
13   - "nightly"
14   # does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
15   # maintainers to fix their pypy-dev package.
16   - "pypy"
17   - "pypy3"
18 # command to install dependencies
19 install:
20   - pip install -r requirements.txt
21   - python setup.py build
22   - python setup.py install
23 # command to run tests
24 script: 
25   - nosetests
26 # from url: http://docs.travis-ci.com/user/languages/python/