diff options
| author | Benoit Pierre <benoit.pierre@gmail.com> | 2017-06-15 12:09:27 +0200 |
|---|---|---|
| committer | Benoit Pierre <benoit.pierre@gmail.com> | 2017-07-13 21:16:35 +0200 |
| commit | 100b73452e6e5e3b60ce8d0887e39f9af1d10899 (patch) | |
| tree | afb19efab678cdabb9af7a9cc8ee522a76368b09 /.travis.yml | |
| parent | 462610859692843e3bb6162befe978f14244eada (diff) | |
| download | external_python_setuptools-100b73452e6e5e3b60ce8d0887e39f9af1d10899.tar.gz external_python_setuptools-100b73452e6e5e3b60ce8d0887e39f9af1d10899.tar.bz2 external_python_setuptools-100b73452e6e5e3b60ce8d0887e39f9af1d10899.zip | |
travis: fix ASCII builds
Setting LC_ALL/LC_CTYPE=C does not work since LANG=en_US.UTF-8.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 6d6333f8..330e25a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,9 @@ python: matrix: include: - python: 3.6 - env: LC_ALL=C LC_CTYPE=C + env: LANG=C - python: 2.7 - env: LC_ALL=C LC_CTYPE=C + env: LANG=C script: # need tox to get started - pip install tox |
