We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d098cd commit 64d4ce6Copy full SHA for 64d4ce6
variantlib/constants.py
@@ -75,12 +75,12 @@
75
r" (?P<name>[^\s-]+?) " # <name>
76
r" - (?P<ver>[^\s-]*?) " # "-" <ver>
77
r" ) " # close "namever" group
78
- r" ( - (?P<build>\d[^-]*?) )? " # optional "-" <build>
+ r" (?: - (?P<build>\d[^-]*?) )? " # optional "-" <build>
79
r" - (?P<pyver>[^\s-]+?) " # "-" <pyver> tag
80
r" - (?P<abi>[^\s-]+?) " # "-" <abi> tag
81
r" - (?P<plat>[^\s-]+?) " # "-" <plat> tag
82
r") " # end of <base_wheel_name> group
83
- r"( - (?P<variant_hash> " # optional <variant_hash>
+ r"(?: - (?P<variant_hash> " # optional <variant_hash>
84
rf" [0-9a-f]{{{VARIANT_HASH_LEN}}} "
85
r" ) "
86
r")? "
0 commit comments