Open
Description
The website deployment fails during the build process see being unable to resolve required dependencies when installing mkdocs:
ModuleNotFoundError: No module named 'cgi'
According the gh-action logs, the job seems to use Python 3.13.1
, however, it seems like the cgi
module was removed since Python 3.13 (see stackoverflow).
It seems like there are two options to fix the build:
- Use and fix deployment task to use an older python version (e.g. 3.12.8 as used for the latest successful deployment)
- Check and update dependencies for releases that support latest python version