fix: avoid bug in various patch releases of Python#675
fix: avoid bug in various patch releases of Python#675gaborbernat merged 2 commits intopypa:mainfrom
Conversation
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
|
Would be nice to get this merged and released, so package managers can use patched version :) |
| if ( | ||
| (3, 8, 19) <= sys.version_info < (3, 9) | ||
| or (3, 9, 19) <= sys.version_info < (3, 10) | ||
| or (3, 10, 13) <= sys.version_info < (3, 11) |
There was a problem hiding this comment.
|
@encukou Sorry to bother you, but would you be able to please verify the above version numbers? |
Co-authored-by: layday <layday@protonmail.com>
This reverts commit 3c94f8c. This was not the correct way to specify a Python version, and I can't be bothered to figure out the correct way, as this issue will be fixed in build 1.0.1. See bug report pypa/build#674 and fix pypa/build#675
|
Confirmed. Thank you, and sorry for the trouble! If another project wants to copy this approach: you could instead add |
|
Thanks all! |
per the changelogs, that set seems to be the versions at which the fix was made. The correct set of faulty versions should be |

Fix #674. Serious enough that we should get a patch release out imo.