Quote all version strings in Travis CI configuration

Per the feedback from @polyzen in PR #246, in YAML, numeric bare strings
are interpreted as floats, not strings. Versions are strings and should
not be coerced to a float. For example, 7.10 isn't the same as 7.1.

For more details, see Travis issue:

https://github.com/travis-ci/docs-travis-ci-com/pull/1537
pull/249/head
Jon Dufresne 2017-11-08 18:33:23 -08:00
rodzic c55dbdf2dc
commit a33a357428
1 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -1,12 +1,12 @@
language: python
cache: pip
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
install:
- pip install tox
script: