-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Drop support for RedisAI 1.2.5 #383
Changes from 4 commits
e930cbb
bae8108
8871ee9
675e53f
f991339
f59b47d
2cd4276
8f7a56a
546abf3
8742857
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 |
---|---|---|
|
@@ -65,11 +65,8 @@ def check_py_onnx_version(versions: Versioner) -> None: | |
msg = ( | ||
"An onnx wheel is not available for " | ||
f"Python {py_version.major}.{py_version.minor}. " | ||
"Instead consider using Python 3.8 or 3.9 with Onnx " | ||
"Instead consider using Python 3.8 or 3.9 for ONNX 1.11 support" | ||
) | ||
if sys.platform == "linux": | ||
msg += "1.2.5 or " | ||
Comment on lines
-70
to
-71
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Your removal makes sense but I'm confused by the underlying error message. Shouldn't we be saying that 1.2.7 applies to the redisAI version not the ONNX version? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, that is a typo that I just noticed and asked Al to fix up while he is here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, see other comment on modified file - I am a bit confused. |
||
msg += "1.2.7." | ||
raise SetupError(msg) | ||
_check_packages_in_python_env( | ||
{ | ||
|
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.
Does this docker image use an old version of pytorch we need to upgrade (1.9.1 instead of 1.11):
https://github.com/CrayLabs/SmartSim/blob/develop/docker/testing/Dockerfile
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.
Yes, I think you are right. We need to update the container too before we release.