-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"stable" doesn't point to latest tag. #3729
Comments
Looks like you disable all versions but latest and But with the names you provide the code should be fine. >>> from packaging.version import Version
>>> versions = [Version('v0.0.3'), Version('0.0.4')]
>>> sorted(versions)
[<Version('0.0.3')>, <Version('0.0.4')>] |
@stsewd Yes, I expect it should be fine too. But it really doesn't. That is really strange, I cannot understand what happen. |
@humitos I have tried wiping |
@Sraw I also was able to import the project correctly on my local installation. Did you try activating |
I manually delete whole project in readthedocs and then reimport it. Now it works fine... Hope I wouldn't meet this issue again, thanks everyone! |
Details
I have a tag named "0.0.4"(a new one) and a tag named "v0.0.3"(an old one).
I expect that "stable" will point to tag "0.0.4" instead of "v0.0.3".
But "stable" doesn't point to latest tag.
Expected Result
In build page:
0.0.4: 509e05f0
v0.0.3: 48dde04d
stable: 509e05f0
Actual Result
0.0.4: 509e05f0
v0.0.3: 48dde04d
stable: 48dde04d
The text was updated successfully, but these errors were encountered: