scoop-uv 0.15.2

Scoop up your Python envs with uv — the command is scuv
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Doctor diagnostic module for scuv installation health checks.
//!
//! This module provides functionality to diagnose the scuv installation
//! and report any issues with suggested fixes.

mod checks;
mod engine;
mod types;

pub use engine::Doctor;
pub use types::{Check, CheckResult, CheckStatus};