Allow system environments during project environment validity check (#7585)

This commit is contained in:
Zanie Blue 2024-09-20 12:28:17 -05:00 committed by GitHub
parent 8259600ca6
commit 9164999f23
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 108 additions and 33 deletions

View file

@ -5,7 +5,7 @@ pub use crate::discovery::{
find_python_installations, EnvironmentPreference, Error as DiscoveryError, PythonDownloads,
PythonNotFound, PythonPreference, PythonRequest, PythonSource, VersionRequest,
};
pub use crate::environment::PythonEnvironment;
pub use crate::environment::{InvalidEnvironment, InvalidEnvironmentKind, PythonEnvironment};
pub use crate::implementation::ImplementationName;
pub use crate::installation::{PythonInstallation, PythonInstallationKey};
pub use crate::interpreter::{Error as InterpreterError, Interpreter};