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
The only C system library I need is libmysqlclient-dev and the RTD Dockerfileseems to include it
I tried to docker pull readthedocs/build:latest and run the various commands locally, and everything worked fine. The mysql_config is also clearly there:
docs@27e903412d0f:/$ file /usr/bin/mysql_config /usr/bin/mysql_config: POSIX shell script, ASCII text executable
Actual Result
The RTD build fails when trying to install the mysqlclient dependency, saying mysql_config: not found.
The text was updated successfully, but these errors were encountered:
Details
Expected Result
I would expect
pip install .[dev]
to run successfully without any issue.The only tricky point is the
mysqlclient
dependency in thesetup.py
, because this package requires a C system library and I read that RTD "does not support installing random C libraries".However this should not be an issue for the following reasons:
libmysqlclient-dev
and the RTDDockerfile
seems to include itdocker pull readthedocs/build:latest
and run the various commands locally, and everything worked fine. Themysql_config
is also clearly there:Actual Result
The RTD build fails when trying to install the
mysqlclient
dependency, sayingmysql_config: not found
.The text was updated successfully, but these errors were encountered: