-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tighten dependency constraint only adapting latest patches (#2607)
* tighten dependency constratint only adapting latest patches * adjust scikit-image version w.r.t python version * adjust tensorboard version w.r.t python version * remove version specifier for scikit-image
- Loading branch information
Showing
9 changed files
with
36 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ||
# API Requirements. # | ||
attrs>=21.2.0 | ||
attrs==23.1.* | ||
networkx>=2.6,<=2.8.0 | ||
numpy>=1.21.0,<=1.23.4 # np.bool was removed in 1.24.0 which was used in openvino runtime | ||
omegaconf>=2.1.1 | ||
opencv-python>=4.5 | ||
pymongo | ||
scikit-learn>=1.0.2 | ||
omegaconf==2.3.* | ||
opencv-python==4.8.1.* | ||
pymongo==4.6.* | ||
scikit-learn==1.3.* | ||
Shapely>=1.7.1,<=1.8.0 | ||
imagesize==1.4.1 | ||
dill>=0.3.6 | ||
dill==0.3.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ||
# Base Algo Requirements. # | ||
natsort>=6.0.0 | ||
prettytable | ||
protobuf>=3.20.0 | ||
natsort==8.4.* | ||
prettytable==3.9.* | ||
protobuf==3.20.* | ||
pyyaml | ||
datumaro==1.5.1rc3 | ||
psutil | ||
scipy>=1.8 | ||
bayesian-optimization>=1.2.0 | ||
tensorboard>=2.11.0 | ||
multiprocess | ||
psutil==5.9.* | ||
scipy==1.10.* | ||
bayesian-optimization==1.4.* | ||
tensorboard==2.15.*; python_version >= '3.9' | ||
tensorboard==2.14.*; python_version < '3.9' | ||
multiprocess==0.70.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ||
# Development Requirements. # | ||
pre-commit==2.20.0 | ||
pylint | ||
pytest | ||
coverage | ||
pytest-timeout | ||
pytest-mock | ||
pylint==3.0.* | ||
pytest==7.4.* | ||
coverage==7.3.* | ||
pytest-timeout==2.2.* | ||
pytest-mock==3.12.* | ||
onnx==1.13.0 | ||
onnxruntime==1.14.1 | ||
pytest-csv | ||
tox>=4.5.1.1 | ||
pytest-csv==3.0.* | ||
tox==4.11.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
furo | ||
myst-parser | ||
furo==2023.3.* | ||
myst-parser==1.0.* | ||
sphinx==5.3.0 | ||
pydata-sphinx-theme==0.12.0 | ||
sphinx-tabs | ||
sphinx-panels | ||
sphinx-tabs==3.4.* | ||
sphinx-panels==0.4.* | ||
sphinx-copybutton==0.5.0 | ||
sphinx-autoapi | ||
sphinxemoji | ||
nbsphinx | ||
sphinx-autoapi==2.1.* | ||
sphinxemoji==0.2.* | ||
nbsphinx==0.9.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ||
# Visual Prompting Requirements. | ||
scikit-image | ||
scikit-image # specifying different version w.r.t python_version is not effect | ||
pytorch-lightning>=1.7.0,<1.10.0 |