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

fix: don't error on not editable not path #1365

Merged
merged 2 commits into from
May 10, 2024

Conversation

ruben-arts
Copy link
Contributor

No description provided.

@@ -163,9 +163,10 @@ impl PyPiRequirement {
PyPiRequirement::Path { editable: e, .. } => {
*e = Some(editable);
}
_ => {
_ if editable => {
tracing::error!("Cannot add editable to a non path like dependency.");
Copy link
Member

Choose a reason for hiding this comment

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

Should we say warning!("ignoring editable on a non path-like dependency")
Error is very scary.

@tdejager tdejager merged commit 945a820 into prefix-dev:main May 10, 2024
24 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants