You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker/api/requirements: fix api container build failure
Fix build failures of `api` container. Error logs can be found
at ```https://github.com/kernelci/kernelci-api/issues/303```.
Root cause:
`fastapi[all] 0.68.1` package installs `pyyaml 5.4.1` package
internally. That again depends on `Cython` package.
Due to the recent upgrade to `Cython 3.0.0`, `pyyaml 5.4.1` stopped
building with `python 3.10`. To fix this, upgrading `fastapi[all]`
to `0.99.1` version as that uses `pyyaml 6.0.1`. The selected
`fastapi` version is compatible with current `fastapi-pagination`
and `fastapi-versioning` packages.
Signed-off-by: Jeny Sadadia <jeny.sadadia@collabora.com>
0 commit comments