8000 Tags · sobolevn/uv · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: sobolevn/uv

Tags

0.4.18

Toggle 0.4.18's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 0.4.18 (astral-sh#7852)

0.4.17

Toggle 0.4.17's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to v0.4.17 (astral-sh#7742)

0.4.16

Toggle 0.4.16's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 0.4.16 (astral-sh#7669)

0.4.15

Toggle 0.4.15's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to v0.4.15 (astral-sh#7612)

0.4.14

Toggle 0.4.14's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 0.4.14 (astral-sh#7600)

0.4.13

Toggle 0.4.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 0.4.13 (astral-sh#7558)

0.4.12

Toggle 0.4.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to 0.4.12 (astral-sh#7499)

0.4.11

Toggle 0.4.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add support for `--with-editable` to `uv tool` (astral-sh#6744)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary
<!-- What's the purpose of the change? What does it do, and why? -->
close astral-sh#6272 

## Test Plan
<!-- How was it tested? -->
As in astral-sh#6262

---------

Co-authored-by: Zanie Blue <contact@zanie.dev>

0.4.10

Toggle 0.4.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version to v0.4.10 (astral-sh#7368)

0.4.9

Toggle 0.4.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Avoid selecting pre-releases for Python downloads without a version r…

…equest (astral-sh#7278)

Following astral-sh#7263 the 3.13.0rc2 releases are at the top of the download
list but we should not select them unless 3.13 is actually requested.

Prior to this, `uv python install` would install `3.13.0rc2`. 

```
❯ cargo run -- python install --no-config
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.14s
     Running `target/debug/uv python install --no-config`
Searching for Python installations
Installed Python 3.12.6 in 1.33s
 + cpython-3.12.6-macos-aarch64-none
```

```
❯ cargo run -- python install --no-config 3.13
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.14s
     Running `target/debug/uv python install --no-config 3.13`
Searching for Python versions matching: Python 3.13
Installed Python 3.13.0rc2 in 1.18s
 + cpython-3.13.0rc2-macos-aarch64-none
```
0