Open inderps opened 12 months ago
@inderps thanks for raising this issue. Note also that a PR is always welcomed if you want to take a stab at fixing this bug.
I had the same issue when the requirements file had:
sphinx-autodoc-typehints==1.25.2
along with any one of:
sphinxcontrib-applehelp==1.0.8
sphinxcontrib-devhelp==1.0.6
sphinxcontrib-htmlhelp==2.0.5
sphinxcontrib-qthelp==1.0.7
sphinxcontrib-serializinghtml==1.1.9
However I realised that these contrib packages had mix-matched versions with the downstream Sphinx dependencies. Moving them on one incremental version seems to avoid the issue.
Description
I am experiencing a
RecursionError
when usingpython-inspector
to analyze a project that includessphinx-rtd-theme
as a dependency. This error seems to occur during the dependency resolution process.Steps to Reproduce
requirements.txt
file with the following content:python-inspector
with the following command:Expected Behavior
I expected
python-inspector
to analyze the project's dependencies without any issues.Actual Behavior
The
python-inspector
command results in aRecursionError
. The detailed error output is as follows: