diff --git a/rye/src/pyproject.rs b/rye/src/pyproject.rs index bf32b073f4..9980d225f0 100644 --- a/rye/src/pyproject.rs +++ b/rye/src/pyproject.rs @@ -469,6 +469,7 @@ impl Workspace { self: &'a Arc, ) -> impl Iterator> + 'a { walkdir::WalkDir::new(&self.root) + .follow_links(true) .into_iter() .filter_entry(|entry| { !(entry.file_type().is_dir() && skip_recurse_into(entry.file_name()))