@@ -19,18 +19,24 @@ jobs:
1919 ENV_FILE : ci/deps/azure-36-minimum_versions.yaml
2020 CONDA_PY : " 36"
2121 PATTERN : " not slow and not network"
22+
2223 py36_locale_slow_old_np :
2324 ENV_FILE : ci/deps/azure-36-locale_slow.yaml
2425 CONDA_PY : " 36"
2526 PATTERN : " slow"
26- LOCALE_OVERRIDE : " zh_CN.UTF-8"
27+ # pandas does not use the language (zh_CN), but should support diferent encodings (utf8)
28+ # we should test with encodings different than utf8, but doesn't seem like Ubuntu supports any
29+ LANG : " zh_CN.utf8"
30+ LC_ALL : " zh_CN.utf8"
2731 EXTRA_APT : " language-pack-zh-hans"
2832
2933 py36_locale :
3034 ENV_FILE : ci/deps/azure-36-locale.yaml
3135 CONDA_PY : " 36"
3236 PATTERN : " not slow and not network"
33- LOCALE_OVERRIDE : " it_IT.UTF-8"
37+ LANG : " it_IT.utf8"
38+ LC_ALL : " it_IT.utf8"
39+ EXTRA_APT : " language-pack-it"
3440
3541 py36_32bit :
3642 ENV_FILE : ci/deps/azure-36-32bit.yaml
4248 ENV_FILE : ci/deps/azure-37-locale.yaml
4349 CONDA_PY : " 37"
4450 PATTERN : " not slow and not network"
45- LOCALE_OVERRIDE : " zh_CN.UTF-8"
51+ LANG : " zh_CN.utf8"
52+ LC_ALL : " zh_CN.utf8"
53+ EXTRA_APT : " language-pack-zh-hans"
4654
4755 py37_np_dev :
4856 ENV_FILE : ci/deps/azure-37-numpydev.yaml
@@ -54,10 +62,16 @@ jobs:
5462
5563 steps :
5664 - script : |
57- if [ "$(uname)" == "Linux" ]; then sudo apt-get install -y libc6-dev-i386 $EXTRA_APT; fi
58- echo '##vso[task.prependpath]$(HOME)/miniconda3/bin'
59- echo "Creating Environment"
60- ci/setup_env.sh
65+ if [ "$(uname)" == "Linux" ]; then
66+ sudo apt-get update
67+ sudo apt-get install -y libc6-dev-i386 $EXTRA_APT
68+ fi
69+ displayName: 'Install extra packages'
70+
71+ - script : echo '##vso[task.prependpath]$(HOME)/miniconda3/bin'
72+ displayName : ' Set conda path'
73+
74+ - script : ci/setup_env.sh
6175 displayName : ' Setup environment and build pandas'
6276
6377 - script : |
0 commit comments