Skip to content

Commit 92e68fa

Browse files
committed
TST allowable failures for 0.12-
1 parent 439ccea commit 92e68fa

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ env:
99
- PYTHON=2.7 PANDAS=0.11.0
1010
- PYTHON=2.7 PANDAS=0.10.1
1111

12+
matrix:
13+
allow_failures:
14+
- env: PANDAS=0.12.0
15+
- env: PANDAS=0.11.0
16+
- env: PANDAS=0.10.1
17+
1218
install:
1319
- sudo apt-get update
1420
# You may want to periodically update this, although the conda update

pandas_data_readers/tests/test_data.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
import pandas.util.testing as tm
2020
from numpy.testing import assert_array_equal
2121

22-
if compat.PY3:
22+
try:
2323
from urllib.error import HTTPError
24-
else:
24+
except ImportError:
2525
from urllib2 import HTTPError
2626

2727
import pandas_data_readers.data as web

0 commit comments

Comments
 (0)