File: dev-install.sh

package info (click to toggle)
h5py 3.15.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,716 kB
  • sloc: python: 11,528; ansic: 578; makefile: 432; sh: 33
file content (8 lines) | stat: -rwxr-xr-x 375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
# Install h5py in a convenient way for frequent reinstallation as you work on it.
# This disables the mechanisms to find and install build dependencies, so you
# need to already have those (Cython, pkgconfig, numpy & optionally mpi4py) installed
# in the current environment.
set -e

H5PY_SETUP_REQUIRES=0 python3 setup.py build
python3 -m pip install . --no-build-isolation