-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Please DO NOT upload built distribution wheels without updating the version #1212
Comments
Sorry about that. Last week I triggered the CI on https://github.com/google/brotli-wheels to build and upload wheels for newly released Python 3.13 but that might have also accidentally upload extra wheels for older pythons as you show above. /cc @eustas |
Hopefully we will have next release this year. |
Python versioning is more expressive than this. For example, public version identifiers are defined to simply be any number of dot-separated values, so you could release new versions as:
You could also codify that the first X numbers are your package version, followed by the brotli version, like:
In short, the package version doesn't have to be as constrained as it currently is. |
After reviewing other issues involving Python 2.7 failures, I think my recommendation here would be to use the first X numbers for your package version, followed by the brotli version.
Documenting what the numbers mean then allows people to pin their dependencies in the ways that they meaningfully want, like |
For using who're using poetry or similar dependency lock tools, this will cause the lock file out of date without any library version update.
Please avoid doing this.
The text was updated successfully, but these errors were encountered: