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
I though I fixed this in #836, but it looks like readthedocs is still pointing to the main branch for v0.9.3.post2. Not a big deal, but flagging it here for fixing in the next release.
The text was updated successfully, but these errors were encountered:
I did a bit of looking into this. Here's what I think is happening:
In the build process, readthedocs checks out the code using the command git clone --no-single-branch --depth 50 https://github.com/python-control/python-control .
This gets the latest code, but that code does not have the version set => we end up with __version__ being set to 'dev'.
In doc/conf.py, if version is 'dev' then the source code links point to the main branch.
Possible fixes:
Checkout the code via pip
Figure out if there is a tag on the commit and use that to set the version number
I though I fixed this in #836, but it looks like readthedocs is still pointing to the main branch for v0.9.3.post2. Not a big deal, but flagging it here for fixing in the next release.
The text was updated successfully, but these errors were encountered: