Skip to content

Commit 76b0c54

Browse files
committed
BLD: fix setup.py to load correctly data files
1 parent f600e20 commit 76b0c54

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

setup.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -666,12 +666,14 @@ def pxd(name):
666666
'pandas.io.tests',
667667
'pandas.stats.tests',
668668
],
669-
package_data={'pandas.io': ['tests/*.h5',
670-
'tests/*.csv',
671-
'tests/*.txt',
672-
'tests/*.xls',
673-
'tests/*.xlsx',
674-
'tests/*.table'],
669+
package_data={'pandas.io': ['tests/data/legacy_hdf/*.h5',
670+
'tests/data/legacy_pickle/0.10.1/*.pickle',
671+
'tests/data/legacy_pickle/0.11.0/*.pickle',
672+
'tests/data/*.csv',
673+
'tests/data/*.txt',
674+
'tests/data/*.xls',
675+
'tests/data/*.xlsx',
676+
'tests/data/*.table'],
675677
'pandas.tools': ['tests/*.csv'],
676678
'pandas.tests': ['data/*.pickle',
677679
'data/*.csv'],

0 commit comments

Comments
 (0)