Recently, the github actions CI environment has been broken due to an incompatibility between sphinx-build and the docutils python package. The pip3 install command will upgrade docutils to an incompatible version.
Since we install sphinx via pip3, it will always install an appropriate version of docutils package. By forcing the upgrade, we created a broken situation. Remove the upgrade command and trust pip3. Signed-off-by: Aaron Conole <[email protected]> Reported-by: Ilya Maximets <[email protected]> --- .ci/linux-prepare.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/.ci/linux-prepare.sh b/.ci/linux-prepare.sh index c55125cf78..e4d2a187e0 100755 --- a/.ci/linux-prepare.sh +++ b/.ci/linux-prepare.sh @@ -22,7 +22,6 @@ cd .. pip3 install --disable-pip-version-check --user \ flake8 hacking sphinx pyOpenSSL wheel setuptools -pip3 install --user --upgrade docutils pip3 install --user 'meson==0.47.1' if [ "$M32" ]; then -- 2.31.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
