forked from pubgrub-rs/pubgrub
-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add Ranges::from_iter
#34
Open
konstin
wants to merge
9
commits into
main
Choose a base branch
from
konsti/main/from-iter
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Commits on Oct 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ec165db - Browse repository at this point
Copy the full SHA ec165dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for b977176 - Browse repository at this point
Copy the full SHA b977176View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85f4c47 - Browse repository at this point
Copy the full SHA 85f4c47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85405b8 - Browse repository at this point
Copy the full SHA 85405b8View commit details -
Fix-ups to tag generating action (#3)
* Use new GitHub output syntax * Fix tag message
Configuration menu - View commit details
-
Copy full SHA for 4c60108 - Browse repository at this point
Copy the full SHA 4c60108View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13a9870 - Browse repository at this point
Copy the full SHA 13a9870View commit details -
Add
State::add_incompatibility_from_dependencies
(#27)This wrapper avoids accessing the `incompatibility_store` directly in uv code. Before: ```rust let dep_incompats = self.pubgrub.add_version( package.clone(), version.clone(), dependencies, ); self.pubgrub.partial_solution.add_version( package.clone(), version.clone(), dep_incompats, &self.pubgrub.incompatibility_store, ); ``` After: ```rust self.pubgrub.add_incompatibility_from_dependencies(package.clone(), version.clone(), dependencies); ``` `add_incompatibility_from_dependencies` is one of the main methods for the custom interface to pubgrub.
Configuration menu - View commit details
-
Copy full SHA for 0196034 - Browse repository at this point
Copy the full SHA 0196034View commit details -
Configuration menu - View commit details
-
Copy full SHA for 95e1390 - Browse repository at this point
Copy the full SHA 95e1390View commit details
Commits on Nov 5, 2024
-
See pubgrub-rs#273, it's split out from that PR, for https://github.com/astral-sh/uv/pull/8797/files. Closes #33
Configuration menu - View commit details
-
Copy full SHA for 30502ce - Browse repository at this point
Copy the full SHA 30502ceView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.