Skip to content

Commit

Permalink
Add hdf5plugin to MacOS installation requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasole committed Nov 25, 2016
1 parent cdb28c1 commit c4b4a22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py2app_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#The options below are equivalent to running from the command line
#python py2app_setup.py py2app --packages=matplotlib,ctypes,h5py,Object3D
#probably matplotlib and PyOpenGL are properly detected by py2app
PACKAGES = ['fisx', 'h5py','OpenGL','ctypes','matplotlib','logging', 'PyMca5']
PACKAGES = ['fisx', 'h5py','OpenGL','ctypes','matplotlib','hdf5plugin','logging', 'PyMca5']
try:
import mdp
PACKAGES.append('mdp')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ def run(self):
]

install_requires = ["numpy", "matplotlib", "fisx>=1.1.2"]
if sys.platform == "win32":
if sys.platform in ["win32", "darwin"]:
install_requires.append("hdf5plugin")
setup_requires = ["numpy"]

Expand Down

0 comments on commit c4b4a22

Please sign in to comment.