-
Notifications
You must be signed in to change notification settings - Fork 89
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
Dockerfile.ci: v0.26.0: PyYAML from renode python requirements conflicts with zephyr's one #145
Comments
Unfortunately See aws/aws-cli#5943. We'll be stuck with this until aws/aws-cli#6648 gets merged (open for over a year), or we replace EDIT: it seems we've already ditched @stephanosio I think we should still remove |
As far as I can see, we are not using the |
This commit removes the `awscli` Python package from the base CI image because it is not currently not used by any Zephyr CI workflows and has `PyYAML` dependency conflict with the Renode (see the GH issue zephyrproject-rtos#145). If the AWS command line tool is necessary in the future, look into either migrating to the `awscliv2` or installing the `awscli` package in a virtual environment. Signed-off-by: Stephanos Ioannidis <[email protected]>
|
This commit removes the `awscli` Python package from the base CI image because it is not currently not used by any Zephyr CI workflows and has `PyYAML` dependency conflict with the Renode (see the GH issue #145). If the AWS command line tool is necessary in the future, look into either migrating to the `awscliv2` or installing the `awscli` package in a virtual environment. Signed-off-by: Stephanos Ioannidis <[email protected]>
Hello,
Renode requires hardcoded PyYAML == 6.0 while awscli and friends want PyYAML >= 5.4 and < 6.0, so an older PyYAML is suddenly installed, with probably unpredictable results in all Renode dependent tests.
AFAIS scripts/requirements-*.txt should be updated to use newer packages and hopefully avoid above problem.
The text was updated successfully, but these errors were encountered: