File: dev-install.sh

package info (click to toggle)
h5py 3.16.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,828 kB
  • sloc: python: 12,212; ansic: 578; makefile: 433; sh: 33
file content (8 lines) | stat: -rwxr-xr-x 375 bytes parent folder | download | duplicates (4)
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