-
Notifications
You must be signed in to change notification settings - Fork 870
Arm backend: Pin pybind11 version when installing tosa_serialization #18036
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,3 +7,5 @@ ml_dtypes == 0.5.1 | |||||||
| flatbuffers == 24.3.25 | ||||||||
| tosa-adapter-model-explorer == 0.1.0 | ||||||||
| ai-edge-model-explorer >= 0.1.16 | ||||||||
|
||||||||
| ai-edge-model-explorer >= 0.1.16 | |
| ai-edge-model-explorer >= 0.1.16 | |
| # NOTE: pybind11 version must be kept in sync with .ci/scripts/unittest-linux-cmake.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pybind11 pin duplicates the version in
backends/arm/requirements-arm-tosa.txt. To reduce the chance of the two pins diverging, consider deriving the version from a single source (e.g., install-r backends/arm/requirements-arm-tosa.txt/a shared constraints file, or define a single variable that both paths use).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will install unnecessary dependencies, so I will not take this suggestion