Skip to content

Commit 85e61c6

Browse files
authored
Merge pull request #176 from arokem/hdf5_install
MAINT: Pin h5py separately.
2 parents f5080e9 + e303bf5 commit 85e61c6

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,10 @@ jobs:
532532
working_directory: /tmp/src/dmriprep
533533
steps:
534534
- checkout
535+
- run:
536+
name: Install libhdf5
537+
command: |
538+
sudo apt-get install pkg-config libhdf5-103 libhdf5-dev
535539
- run:
536540
name: Start virtual environment
537541
command: |

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version: [3.7, 3.8]
17-
pip: ["pip~=18.1", "pip>=20.3"]
18-
17+
pip: ["pip~=20.3", "pip~=21.0"]
18+
1919
steps:
20+
- name: Install hdf5 libraries
21+
run: |
22+
sudo apt-get install pkg-config libhdf5-103 libhdf5-dev
2023
- name: Set up Python ${{ matrix.python-version }}
2124
uses: actions/setup-python@v1
2225
with:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ project_urls =
2222
python_requires = >=3.7
2323
install_requires =
2424
dipy >=1.0.0
25+
h5py
2526
indexed_gzip >=0.8.8
2627
nibabel ~= 3.0
2728
nipype >= 1.5.1, < 2.0

0 commit comments

Comments
 (0)