Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't panic with invalid wheel source #4191

Merged
merged 1 commit into from
Jun 10, 2024

Conversation

konstin
Copy link
Member

@konstin konstin commented Jun 10, 2024

Remove the panic when there is an invalid wheel source, instead surface the error. This error can only occur when manually editing the lock file, but since it's an external file, we should error and not panic.

This change is helpful since the method needs to be able to error for relative path support.

@konstin konstin added the preview Experimental behavior label Jun 10, 2024
@@ -1780,6 +1782,9 @@ impl std::fmt::Display for LockError {
"found distribution `{id}` with development dependency group `{group}` but no base distribution",
)
}
LockErrorKind::InvalidWheelSource { source } => {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BurntSushi Is there are reason why we implement as of those manually instead of deriving them with thiserror?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No real reason other than my fingers are just very used to typing out the error types. I'm fine if you want to convert over to thiserror.

(I have also been thinking that we might perhaps just want to use an anyhow::Error in most places.)

Remove the panic when there is an invalid wheel source, instead surface the error. This error can only occur when manually editing the lock file, but since it's an external file, we should error and not panic.

This change is helpful since the method needs to be able to error for relative path support.
@konstin konstin force-pushed the konsti/dont-panic-invalid-source branch from bb8a826 to 6df6b1a Compare June 10, 2024 11:05
@charliermarsh charliermarsh merged commit 18b40b0 into main Jun 10, 2024
46 of 47 checks passed
@charliermarsh charliermarsh deleted the konsti/dont-panic-invalid-source branch June 10, 2024 12:44
Dist::Built(built_dist)
}
SourceKind::Git(_) => {
unreachable!("Wheels cannot come from Git sources")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the original intent here was that these cases were actually impossible as a contract of constructing a Distribution. I wonder if that got flubbed somehow.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah this should be impossible.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wouldn't know a good way to tell serde about this correspondence, any hints?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I can't make the types do it for me, then I usually define a TryFrom impl and point Serde to that. For example:

impl TryFrom<LockWire> for Lock {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
preview Experimental behavior
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants