We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b341e commit 379f236Copy full SHA for 379f236
2 files changed
.travis.yml
@@ -5,6 +5,7 @@ python:
5
- "3.5"
6
- "3.6"
7
- "3.7"
8
+ - "3.8"
9
before_install:
10
- sudo apt-get update
11
install:
@@ -25,4 +26,5 @@ script:
25
26
- if [[ $TRAVIS_PYTHON_VERSION == 3.5* ]]; then py.test tests/; fi
27
- if [[ $TRAVIS_PYTHON_VERSION == 3.6* ]]; then py.test tests/; fi
28
- if [[ $TRAVIS_PYTHON_VERSION == 3.7* ]]; then py.test tests/; fi
29
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.8* ]]; then py.test tests/; fi
30
cache: pip
tests/test_ipf.py
@@ -6,7 +6,7 @@
import pandas as pd
import numpy as np
-from pandas.util.testing import assert_frame_equal
+from pandas.testing import assert_frame_equal
from numpy.testing import assert_almost_equal
12
pd.options.display.expand_frame_repr = False
0 commit comments