We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec49980 commit 8694578Copy full SHA for 8694578
crates/uv/tests/it/common/mod.rs
@@ -290,10 +290,9 @@ impl TestContext {
290
\d+ # An actual patch version
291
)
292
)? # (we allow the patch version to be missing entirely, e.g., in a request)
293
- [a-z]? # Pre-release letter
294
- (?:
295
- \+[a-z]+ # An optional variant variant, such as `+free-threaded
296
- )?
+ (?:(?:a|b|rc)[0-9]+)? # Pre-release version component, e.g., `a6` or `rc2`
+ (?:[td])? # A short variant, such as `t` (for freethreaded) or `d` (for debug)
+ (?:\+[a-z]+)? # A long variant, such as `+free-threaded`
297
298
-
299
[a-z0-9]+ # Operating system (e.g., 'macos')
0 commit comments