-
-
Notifications
You must be signed in to change notification settings - Fork 474
Comparing changes
Open a pull request
base repository: astral-sh/rye
base: 0.39.0
head repository: astral-sh/rye
compare: 0.40.0
- 16 commits
- 38 files changed
- 8 contributors
Commits on Aug 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2c69050 - Browse repository at this point
Copy the full SHA 2c69050View commit details -
Fix Docker code example (#1345)
The Dockerfile code example was broken for me - this PR fixes this error.
Configuration menu - View commit details
-
Copy full SHA for ce3c91a - Browse repository at this point
Copy the full SHA ce3c91aView commit details
Commits on Aug 28, 2024
-
Respect exclusions when generating hashes (#1357)
## Summary Closes #1349.
Configuration menu - View commit details
-
Copy full SHA for 87e0cec - Browse repository at this point
Copy the full SHA 87e0cecView commit details
Commits on Aug 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6067894 - Browse repository at this point
Copy the full SHA 6067894View commit details
Commits on Sep 3, 2024
-
List all existing tool references on
rye toolchain remove
(#1346)Using `rye toolchain remove` now lists all tools that use a specific toolchain. This eliminates the Whac-a-Mole game of reiterating through the `rye toolchain remove blabla` command in order to actually remove it. ## Example Usage ```bash $ rye install black --quiet --python 3.11.7 $ rye toolchain remove 3.11.7 error: toolchain cpython@3.11.7 is still in use by tool black $ rye install ruff --quiet --python 3.11.7 $ rye toolchain remove 3.11.7 error: toolchain cpython@3.11.7 is still in use by tools: black, ruff ``` _(Side note: Rust isn't my main d2d language, feel free to comment on coding style and unidiomatic code)_
Configuration menu - View commit details
-
Copy full SHA for d103a75 - Browse repository at this point
Copy the full SHA d103a75View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23e125e - Browse repository at this point
Copy the full SHA 23e125eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6cd803e - Browse repository at this point
Copy the full SHA 6cd803eView commit details -
Fix a few regex inefficiencies (#1326)
Explanations: * `.*?$` is the same as `.*`: Being lazy at the end is the same as being greedy. * `[^\-]` is the same as `[^-]`: The `-` here cannot be considered a part of a range. * The dot in `user.(name|email)` acts as a metacharacter. * `(?:(via)|(?:via (.*?))|(?: (.*?)))$` is equivalent to `(?:via$|via (.*)| (.*))`. Consequently, a line below was changed from `.get(2).or_else(|| m.get(3))` to `.get(1).or_else(|| m.get(2))`.
Configuration menu - View commit details
-
Copy full SHA for d026370 - Browse repository at this point
Copy the full SHA d026370View commit details -
rye list: Never modify or delete the virtualenv (#1351)
Previously, in *some* situations, `rye pin <pythonversion>; rye list` could lead to rye deleting the existing virtualenv. I suggest that `rye list` should be an interrogator and never modify any project. With this change, it lists its own and non-rye virtualenvs (same behaviour as uv pip freeze) but should never create, recreate or overwrite environments (own or non-rye). Fixes #1352
Configuration menu - View commit details
-
Copy full SHA for 06db9d3 - Browse repository at this point
Copy the full SHA 06db9d3View commit details
Commits on Sep 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2a55d63 - Browse repository at this point
Copy the full SHA 2a55d63View commit details -
- Synced latest UV releases <sup>Auto-generated by [sync-uv-releases.yml](https://github.com/astral-sh/rye/blob/main/.github/workflows/sync-uv-releases.yml)</sup> Co-authored-by: mitsuhiko <7396+mitsuhiko@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 0506c92 - Browse repository at this point
Copy the full SHA 0506c92View commit details -
- Synced latest Python releases <sup>Auto-generated by [sync-python-releases.yml](https://github.com/astral-sh/rye/blob/main/.github/workflows/sync-python-releases.yml)</sup> --------- Co-authored-by: mitsuhiko <7396+mitsuhiko@users.noreply.github.com> Co-authored-by: Charlie Marsh <charlie.r.marsh@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2491ca0 - Browse repository at this point
Copy the full SHA 2491ca0View commit details
Commits on Sep 20, 2024
-
- Synced latest UV releases <sup>Auto-generated by [sync-uv-releases.yml](https://github.com/astral-sh/rye/blob/main/.github/workflows/sync-uv-releases.yml)</sup> Co-authored-by: mitsuhiko <7396+mitsuhiko@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 660d7ba - Browse repository at this point
Copy the full SHA 660d7baView commit details
Commits on Sep 22, 2024
-
- Synced latest UV releases <sup>Auto-generated by [sync-uv-releases.yml](https://github.com/astral-sh/rye/blob/main/.github/workflows/sync-uv-releases.yml)</sup> Co-authored-by: mitsuhiko <7396+mitsuhiko@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 44990bc - Browse repository at this point
Copy the full SHA 44990bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3eb590c - Browse repository at this point
Copy the full SHA 3eb590cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a928cd5 - Browse repository at this point
Copy the full SHA a928cd5View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 0.39.0...0.40.0