Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion responsibleai_vision/requirements-automl.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
opencv-python==4.3.0.36
azureml-automl-dnn-vision>=1.47.0
azureml-automl-dnn-vision>=1.47.0
pyasn1>=0.6.2 # not directly required, pinned by Snyk to avoid a vulnerability
torch>=2.10.0 # not directly required, pinned by Snyk to avoid a vulnerability
wheel>=0.46.2 # not directly required, pinned by Snyk to avoid a vulnerability
Comment on lines +3 to +5

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This change introduces a major version upgrade for torch (from 1.x to >=2.10.0). This is a significant risk and is likely to introduce breaking API changes, which could break existing functionality that depends on torch (e.g., via torchmetrics). Other dependencies in this project, like pydantic and numpy, are carefully pinned to avoid major version upgrades, and the same caution should be applied here. Additionally, pinning transitive dependencies in this file can lead to a fragile dependency setup. The extensive list of warnings in the pull request description indicates that the dependency tree is already inconsistent. Merging these changes without resolving the underlying conflicts will likely break the environment. It is strongly recommended to reject this automated change and instead perform a comprehensive update of dependencies, resolving all conflicts, and thoroughly testing the application.

Loading