Skip to content

Commit 5398c6a

Browse files
committed
Temporarily added some output in order to find out package versions.
On pandas-dev's CI instances this branch didn't fail for py2 although on top of pandas.io.excel there is an import from "http.client" which is only available in py3. This change should clarify why this happens and should be removed later.
1 parent ad2721b commit 5398c6a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

ci/install_travis.sh

+12
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,18 @@ echo
159159
echo "[show pandas]"
160160
conda list pandas
161161

162+
echo
163+
echo "[show final conda list]"
164+
conda list
165+
166+
echo
167+
echo "[show version of python interpreter]"
168+
python --version
169+
170+
echo
171+
echo "[try to import http.client]"
172+
python -c "import http.client"
173+
162174
echo
163175
echo "[done]"
164176
exit 0

0 commit comments

Comments
 (0)