commit 68e681ba0fd749de874e4b1fabe5a0ff488e11ab Author: teor teor@torproject.org Date: Thu Oct 25 08:58:12 2018 +1000
Travis: try all supported python versions --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+)
diff --git a/.travis.yml b/.travis.yml index 90236c6..2341b36 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,19 @@ language: python
python: + ## Test against all supported python releases - "2.7" + - "3.4" + - "3.5" + - "3.6" + ## Travis Trusty doesn't support these versions + #- "3.7" + #- "3.8-dev" + - "nightly" + # PyPy versions + ## Travis Trusty doesn't support these versions + #- "pypy2.7" + - "pypy3.5"
os: - linux