diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-16 13:58:19 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-01-16 13:58:19 -0500 |
| commit | 7f0ff1c9bffbde1b7d5ce760e4f10799c1920f9d (patch) | |
| tree | 1f4e75f89e3d7b45c0ddc9f844869de5a5539808 | |
| parent | 0084a32c3c16323e159c3f8929de43ab1942203b (diff) | |
| download | external_python_setuptools-7f0ff1c9bffbde1b7d5ce760e4f10799c1920f9d.tar.gz external_python_setuptools-7f0ff1c9bffbde1b7d5ce760e4f10799c1920f9d.tar.bz2 external_python_setuptools-7f0ff1c9bffbde1b7d5ce760e4f10799c1920f9d.zip | |
Only test ASCII on Python 2.7 and 3.current
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index ea6c5016..7009cd9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,12 @@ python: - "3.7-dev" - nightly - pypy -env: - - "" - - LC_ALL=C LC_CTYPE=C +matrix: + include: + - python: 3.6 + env: LC_ALL=C LC_CTYPE=C + - python: 2.7 + env: LC_ALL=C LC_CTYPE=C script: - pip install tox |
