diff --git a/requirements-gpu.txt b/requirements-gpu.txt index 8db9d66..3ea4adb 100644 --- a/requirements-gpu.txt +++ b/requirements-gpu.txt @@ -1,10 +1,10 @@ -opencv-contrib-python-headless==4.7.0.72 +opencv-contrib-python-headless>=4.7.0.72 PyQt5==5.15.7 -imgviz==1.5.0 -natsort==8.1.0 -termcolor==1.1.0 -PyYAML==6.0.1 -onnx==1.16.1 -onnxruntime-gpu==1.18.1 -qimage2ndarray==1.10.0 -darkdetect==0.8.0 +imgviz>=1.5.0 +natsort>=8.1.0 +termcolor>=1.1.0 +PyYAML>=6.0.1 +onnx>=1.16.1 +onnxruntime-gpu>=1.18.1 +qimage2ndarray>=1.10.0 +darkdetect>=0.8.0 diff --git a/requirements.txt b/requirements.txt index ceb8832..cd3bea0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ -opencv-contrib-python-headless==4.7.0.72 +opencv-contrib-python-headless>=4.7.0.72 PyQt5==5.15.7 -imgviz==1.5.0 -natsort==8.1.0 -termcolor==1.1.0 -PyYAML==6.0.1 -onnx==1.16.1 -onnxruntime==1.18.1 -qimage2ndarray==1.10.0 -darkdetect==0.8.0 +imgviz>=1.5.0 +natsort>=8.1.0 +termcolor>=1.1.0 +PyYAML>=6.0.1 +onnx>=1.16.1 +onnxruntime>=1.18.1 +qimage2ndarray>=1.10.0 +darkdetect>=0.8.0 diff --git a/setup.py b/setup.py index d6830dd..caded5a 100644 --- a/setup.py +++ b/setup.py @@ -44,15 +44,15 @@ def get_install_requires(): install_requires = [ "imgviz>=0.11", "natsort>=7.1.0", - "numpy==1.26.4", + "numpy>=2.1.3", "Pillow>=2.8", "PyYAML==6.0.1", - "termcolor==1.1.0", - "opencv-python-headless==4.7.0.72", + "termcolor>=1.1.0", + "opencv-python-headless>=4.7.0.72", 'PyQt5>=5.15.7; platform_system != "Darwin"', - "onnx==1.16.1", - "qimage2ndarray==1.10.0", - "darkdetect==0.8.0", + "onnx>=1.16.1", + "qimage2ndarray>=1.10.0", + "darkdetect>=0.8.0", ] # Add onnxruntime-gpu if GPU is preferred