Skip to content

Commit 726f0bb

Browse files
committed
add h5py in dependencies
1 parent cf317d3 commit 726f0bb

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

binder/environment.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
channels:
22
- conda-forge
33
dependencies:
4-
- python=3.7
5-
- jupyterlab=1.*
6-
- nodejs=10.15
7-
- notebook<5.7.5
8-
- numpy=1.17
4+
- python
5+
- jupyterlab
6+
- nodejs
7+
- notebook
8+
- numpy
99
- matplotlib
1010
- lammps
1111
- ase
12-
- ipywidgets=7.5
13-
- plotly=4.11.0
12+
- ipywidgets
13+
- plotly
14+
- h5py

requirements_dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ pytest
33
pytest-cov
44
pytest-benchmark
55
codecov
6+
h5py
67
ipywidgets=7.5
78
plotly=4.11.0

src/pyscal/trajectory.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
import numpy as np
33
from pyscal.formats.ase import convert_snap
44
import pyscal.core as pc
5+
import h5py
6+
57

68
class Timeslice:
79
"""

0 commit comments

Comments
 (0)