We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439ccea commit 92e68faCopy full SHA for 92e68fa
.travis.yml
@@ -9,6 +9,12 @@ env:
9
- PYTHON=2.7 PANDAS=0.11.0
10
- PYTHON=2.7 PANDAS=0.10.1
11
12
+matrix:
13
+ allow_failures:
14
+ - env: PANDAS=0.12.0
15
+ - env: PANDAS=0.11.0
16
+ - env: PANDAS=0.10.1
17
+
18
install:
19
- sudo apt-get update
20
# You may want to periodically update this, although the conda update
pandas_data_readers/tests/test_data.py
@@ -19,9 +19,9 @@
import pandas.util.testing as tm
from numpy.testing import assert_array_equal
21
22
-if compat.PY3:
+try:
23
from urllib.error import HTTPError
24
-else:
+except ImportError:
25
from urllib2 import HTTPError
26
27
import pandas_data_readers.data as web
0 commit comments