-
Notifications
You must be signed in to change notification settings - Fork 33
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
Windows compatibility #417
base: main
Are you sure you want to change the base?
Conversation
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
…o windows-support
@@ -1,18 +1,20 @@ | |||
typer~=0.6.0 | |||
typer~=0.6.0; sys_platform != "win32" | |||
typer<0.5.0; sys_platform == "win32" | |||
rich~=12.5.0 | |||
PyYAML>=5.4,<6 | |||
requests>=2.26.0 | |||
pydantic==1.10.2 | |||
yaspin==2.1.0 | |||
tabulate==0.8.9 | |||
pexpect==4.8.0 |
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.
do we need this for windows?
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.
here I meant to refer to pexpect
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.
Great work Alejandro, thanks! A couple of points:
- Let's add Windows OS for the workflow runner configuration. Do we need to contact administrators about this before?
- Since singularity is not supported in Windows, do we have an informative message when someone tries to use
--platform singularity
on Windows? - I am a bit concerned about using
wexpect
.pexpect
mentions it but says that it is unmaintained. I wonder if we can later see an alternative (even maybe an alternative topexpect
?)
Co-authored-by: hasan7n <[email protected]>
the only todo: workflow for windows |
CThis PR applies the necessary changes to provide support for Windows machines. It does so by adjusting requirements, updating the MLCube packages, and providing additional logic if necessary. Closes #363.