Fix h5py issue in GHA test jobs (#24338)
**Details:** Fix h5py issue in GHA test jobs: `error: libhdf5.so: cannot open shared object file: No such file or directory` **Ticket:** TBD --------- Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
This commit is contained in:
parent
3414e361e8
commit
624678d554
|
|
@ -16,6 +16,7 @@ wheel>=0.38.1
|
|||
patchelf<=0.17.2.1
|
||||
|
||||
# Frontends
|
||||
h5py>=3.1.0,<3.11.0
|
||||
docopt~=0.6.2
|
||||
paddlepaddle==2.5.2
|
||||
tensorflow>=1.15.5,<2.17.0
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
-c ../../../bindings/python/constraints.txt
|
||||
numpy
|
||||
tensorflow
|
||||
# limit h5py version for Linux arm64, 3.11 version failed
|
||||
h5py<3.11.0; sys_platform == 'linux' and platform_machine == 'aarch64'
|
||||
h5py
|
||||
tensorflow
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
numpy>=1.16.6,<1.27
|
||||
attrs==23.2.0
|
||||
distro==1.9.0
|
||||
h5py>=3.1.0
|
||||
h5py>=3.1.0,<3.11.0
|
||||
Jinja2>=2.11.2
|
||||
pandas>=1.3.5
|
||||
pymongo>=3.12.0
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# some package versions need to be specified in respective requirements.txt
|
||||
# files because the version differs between them:
|
||||
# tensorflow, numpy
|
||||
h5py>=3.1.0,<3.11.0
|
||||
mxnet~=1.2.0; sys_platform == 'win32'
|
||||
mxnet>=1.7.0.post2,<=1.9.1; sys_platform != 'win32'
|
||||
onnx>=1.8.1,<=1.15.0
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
-c ../constraints.txt
|
||||
h5py
|
||||
tensorflow>=1.15.5,<2.17.0
|
||||
numpy>=1.16.6,<1.26
|
||||
networkx
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
-c ../constraints.txt
|
||||
h5py
|
||||
tensorflow>=2.5,<2.17.0
|
||||
numpy>=1.16.6,<1.26
|
||||
networkx
|
||||
|
|
|
|||
Loading…
Reference in New Issue