diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2023-07-27 14:46:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 14:46:53 (GMT) |
commit | 0ff29e7d855bcf8c722b8a0a363eb27edbade1c4 (patch) | |
tree | f2848396092a994b52c312d59babe1fddfa9511a /.github | |
parent | 85d216634aae94223ed5b75a77585f9fd60009e5 (diff) | |
download | hdf5-0ff29e7d855bcf8c722b8a0a363eb27edbade1c4.zip hdf5-0ff29e7d855bcf8c722b8a0a363eb27edbade1c4.tar.gz hdf5-0ff29e7d855bcf8c722b8a0a363eb27edbade1c4.tar.bz2 |
Remove py-pip from h5py action (#3265)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/h5py.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/h5py.yml b/.github/workflows/h5py.yml index 5a45723..22a896e 100644 --- a/.github/workflows/h5py.yml +++ b/.github/workflows/h5py.yml @@ -1,8 +1,8 @@ name: h5py on: workflow_dispatch: -# schedule: -# - cron: "6 0 * * *" + schedule: + - cron: "6 0 * * *" permissions: contents: read @@ -30,10 +30,8 @@ jobs: ./spack/bin/spack install py-h5py@master+mpi ^hdf5@develop-1.15 ./spack/bin/spack install py-pytest ./spack/bin/spack install py-ipython - ./spack/bin/spack install py-pip spack load py-h5py spack load py-pytest spack load py-ipython - spack load py-pip pip install pytest-mpi python -c "import h5py; h5py.run_tests(); print(h5py.version.info);" |