Manuel Kaufmann
Manuel Kaufmann
I found this issue in https://readthedocs.org/projects/docs/builds/23722719/ as well. This was a recent build in our own documentation. I still don't understand why this is happening, but it's worth investigating it...
We should probably run a small Python code from Django shell to remove these notifications from builds that are in finished state.
This would be Python code we could run in production to remove these invalid notifications from builds: ```python from readthedocs.builds.constants import ( BUILD_STATE_FINISHED, BUILD_STATE_CANCELLED, ) from readthedocs.doc_builder.exceptions import BuildMaxConcurrencyError for...
I think I found why we are not resetting the build in some cases: https://github.com/readthedocs/readthedocs.org/blob/a0526ff7959f2fceb4e69512312dff4f5d7f8096/readthedocs/projects/tasks/builds.py#L449-L453 We are only resetting it if has at least one command already. We should remove...
The duplicated "concurrecy limit" notifications deleted and they should not appear again in new builds. As example, the old build linked in this issue doesn't show it anymore: https://beta.readthedocs.org/projects/xclim/builds/23494705/
I'm not sure where my comment went, so I'm writing it again 🤷🏼 --- > I think we'll want to break this out into its own heading in the Addons...
@stsewd > Shouldn't we still list latest and stable first? Those are special versions, basically an alias for the two mayor versions. This makes sense to me. I will give...
> This could be a case for trying to find a different place in the flyout UI/UX to describe latest and stable too. This is definitely something that will be...
I updated this PR to bring latest changes and made strings translatable. I also implemented `latest` and `stable` at the beginning of the list. The only missing thing here is...
CircleCI `checks` fails because a new requirements is needed, but can't be installed there until the PR gets merged 🙃 ``` ModuleNotFoundError: No module named 'bumpver' ``` It's fine to...