Issue Description
Readthedocs cannot build the docs (fails the build) after we merged this commit in which we have split the requirements into two files (requirements.txt and dev_requirements.txt).
Since readthedocs only looks inside a single file (requirements.txt), the build fails.
How to fix
I am not sure what is the optimal solution. Two ideas:
- Add Cirq to
dev_requirements.txt too. And set dev_requirements.txt in the readthedocs administration settings instead of requirements.txt. I tried this, but since Cirq is missing in dev_requirements.txt the API is not rendered (even if the build correctly passes).
- Add a new readthedocs configuration file.
Issue Description
Readthedocs cannot build the docs (fails the build) after we merged this commit in which we have split the requirements into two files (
requirements.txtanddev_requirements.txt).Since readthedocs only looks inside a single file (
requirements.txt), the build fails.How to fix
I am not sure what is the optimal solution. Two ideas:
dev_requirements.txttoo. And setdev_requirements.txtin the readthedocs administration settings instead ofrequirements.txt. I tried this, but since Cirq is missing indev_requirements.txtthe API is not rendered (even if the build correctly passes).