Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 36340f9

Browse files
authored
Remove HDF5 file format support interface extension (#328)
* Remove HDF5 file format support interface extension * PR328. Fix test data generation
1 parent 46b84a0 commit 36340f9

36 files changed

Lines changed: 5 additions & 3032 deletions

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,5 @@ Running unit tests
168168
------------------
169169
::
170170

171-
conda install h5py
172171
python sdc/tests/gen_test_data.py
173172
python -m unittest
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
echo on
22

3-
set HDF5_DIR="%LIBRARY_PREFIX%"
43
"%PYTHON%" setup.py build install --single-version-externally-managed --record=record.txt
54
if errorlevel 1 exit 1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
set -ex
22

3-
HDF5_DIR="${PREFIX}" MACOSX_DEPLOYMENT_TARGET=10.9 \
3+
MACOSX_DEPLOYMENT_TARGET=10.9 \
44
$PYTHON setup.py build install --single-version-externally-managed --record=record.txt

buildscripts/sdc-conda-recipe/meta.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ requirements:
3333
- pyarrow {{ PYARROW_VERSION }}
3434
- arrow-cpp {{ ARROW_CPP_VERSION }}
3535
- boost
36-
- hdf5
37-
- h5py
3836
- mpich # [not win]
3937
- impi_rt # [win]
4038
- impi-devel # [win]
@@ -55,7 +53,6 @@ requirements:
5553

5654
test:
5755
requires:
58-
- h5py
5956
- scipy
6057
imports:
6158
- sdc
@@ -78,8 +75,6 @@ outputs:
7875
- pyarrow {{ PYARROW_VERSION }}
7976
- arrow-cpp {{ PYARROW_VERSION }}
8077
- boost
81-
- hdf5
82-
- h5py
8378
- mpich # [not win]
8479
- impi_rt # [win]
8580
- impi-devel # [win]

buildscripts/test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@
112112
format_print('Coverage can be run only on Linux of mac for now')
113113
sys.exit(0)
114114

115-
os.environ['HDF5_DIR'] = conda_prefix
116-
coverage_omit = './sdc/ml/*,./sdc/cv_ext.py,./sdc/tests/*'
115+
coverage_omit = './sdc/tests/*'
117116
coverage_cmd = ' && '.join(['coverage erase',
118117
f'coverage run --source=./sdc --omit {coverage_omit} ./sdc/runtests.py',
119118
'coveralls -v'])

examples/basic.ipynb

Lines changed: 0 additions & 338 deletions
This file was deleted.

0 commit comments

Comments
 (0)