diff --git a/pandas/tests/io/test_pytables.py b/pandas/tests/io/test_pytables.py index db8306d6dcb77..b1a78030ae34c 100644 --- a/pandas/tests/io/test_pytables.py +++ b/pandas/tests/io/test_pytables.py @@ -14,7 +14,7 @@ from pandas import (Series, DataFrame, Panel, MultiIndex, Int64Index, RangeIndex, Categorical, bdate_range, date_range, timedelta_range, Index, DatetimeIndex, - isna, compat, concat, Timestamp, _np_version_under1p15) + isna, compat, concat, Timestamp) import pandas.util.testing as tm import pandas.util._test_decorators as td @@ -2191,10 +2191,6 @@ def test_unimplemented_dtypes_table_columns(self): # this fails because we have a date in the object block...... pytest.raises(TypeError, store.append, 'df_unimplemented', df) - @pytest.mark.skipif( - not _np_version_under1p15, - reason=("pytables conda build package needs build " - "with numpy 1.15: gh-22098")) def test_calendar_roundtrip_issue(self): # 8591