We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f98bfc commit 98d1437Copy full SHA for 98d1437
crates/pet-poetry/src/lib.rs
@@ -47,7 +47,7 @@ fn is_poetry_cache_environment(path: &Path) -> bool {
47
// - Windows: %LOCALAPPDATA%\pypoetry\Cache\virtualenvs\
48
if has_poetry_cache_components(path) {
49
// Further validate by checking if the directory name matches Poetry's naming pattern
50
- // Pattern: {name}-{8-char-hash}-py or just .venv
+ // Pattern: {name}-{8-char-hash}-py{version}
51
if let Some(dir_name) = path.file_name().and_then(|n| n.to_str()) {
52
// Check for Poetry's hash-based naming: name-XXXXXXXX-py
53
// The hash is 8 characters of base64url encoding
0 commit comments