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
@andreas-el that is correct. we have a separate release branch for every major.minor version, and only the release branch is tagged with updated patch versions.
main represents 8.16-snapshot or something like that, since the release has not been made and it is not given that it will be 8.16 or 9.0.
how do you suggest that we do? adding 8.15.6 to main is also not correct, since main has other updates except for bugfixes/patches that is on the 8.15 release branch.
@andreas-el that is correct. we have a separate release branch for every major.minor version, and only the release branch is tagged with updated patch versions.
main represents 8.16-snapshot or something like that, since the release has not been made and it is not given that it will be 8.16 or 9.0.
how do you suggest that we do? adding 8.15.6 to main is also not correct, since main has other updates except for bugfixes/patches that is on the 8.15 release branch.
@TeeeJay There are many ways to resolve something like this, many include using setuptools_scm.
My first thought would be to consider tagging the first available commit after the release/v8.15 branch was made with something along the lines of v8.16.0-b0 and make sure this is set as a pre-release tag to avoid pushing to pypi. This way main seem newer than the released tags for pip and if using setuptools_scm you can then have relative distance to that commit, e.g. v8.16.0.dev40.. I guess only adding the pre-release tag will resolve this issue we face.
I'm rather coloured by how we do this in the ert repo though.
This is what we currently have in komodo bleeding:
But the version installed certainly isn't
8.15.0
This causes some confusion, since
pip
wants to upgrade the package to version8.15.6
which is actually older than what we currently have frommain
.The text was updated successfully, but these errors were encountered: