mirror of https://github.com/mahmoud/boltons.git
40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
language: python
|
|
cache: pip
|
|
|
|
# Python targets, as defined by https://github.com/travis-ci/travis-build/blob
|
|
# /master/spec/build/script/python_spec.rb and https://github.com/travis-ci
|
|
# /travis-build/blob/master/lib/travis/build/script/python.rb
|
|
python:
|
|
# Standard release https://docs.travis-ci.com/user/languages
|
|
# /python#choosing-python-versions-to-test-against
|
|
- "2.6" # EOLed 5 years ago. https://www.python.org/dev/peps/pep-0361/#release-lifespan
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
# PyPy2.7: https://doc.pypy.org/en/latest
|
|
# /index-of-release-notes.html#cpython-2-7-compatible-versions
|
|
- pypy # Python 2.7.13 on PyPy 5.8.0
|
|
#- pypy-6.0.0 # Python 2.7.13 on PyPy 6.0.0 # Travis needs to upgrade!
|
|
|
|
# PyPy3.5: https://doc.pypy.org/en/latest
|
|
# /index-of-release-notes.html#cpython-3-3-compatible-versions
|
|
- pypy3 # Python 3.5.3 on PyPy PyPy 5.8.0-beta0
|
|
#- pypy3-6.0.0 # Python 3.5.3 on PyPy 6.0.0 # Travis needs to upgrade!
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
|
|
- python: nightly # Python 3.8.0a0
|
|
dist: xenial # required for Python 3.8-dev (travis-ci/travis-ci#9069)
|
|
allow_failures:
|
|
- python: nightly
|
|
|
|
install: "pip install -r requirements-test.txt"
|
|
script: "py.test --doctest-modules boltons tests"
|
|
branches:
|
|
except:
|
|
- function_builder
|