Skip to main content

An extremely fast Python package and project manager, written in Rust.

Project description

uv

uv image image image Actions status Discord

An extremely fast Python package and project manager, written in Rust.

Shows a bar chart with benchmark results.

Installing Trio's dependencies with a warm cache.

Highlights

uv is backed by Astral, the creators of Ruff.

Installation

Install uv with our standalone installers:

# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Or, from PyPI:

# With pip.
pip install uv
# Or pipx.
pipx install uv

If installed via the standalone installer, uv can update itself to the latest version:

uv self update

See the installation documentation for details and alternative installation methods.

Documentation

uv's documentation is available at docs.astral.sh/uv.

Additionally, the command line reference documentation can be viewed with uv help.

Features

Projects

uv manages project dependencies and environments, with support for lockfiles, workspaces, and more, similar to rye or poetry:

$ uv init example
Initialized project `example` at `/home/user/example`

$ cd example

$ uv add ruff
Creating virtual environment at: .venv
Resolved 2 packages in 170ms
   Built example @ file:///home/user/example
Prepared 2 packages in 627ms
Installed 2 packages in 1ms
 + example==0.1.0 (from file:///home/user/example)
 + ruff==0.5.0

$ uv run ruff check
All checks passed!

$ uv lock
Resolved 2 packages in 0.33ms

$ uv sync
Resolved 2 packages in 0.70ms
Audited 1 package in 0.02ms

See the project documentation to get started.

uv also supports building and publishing projects, even if they're not managed with uv. See the publish guide to learn more.

Scripts

uv manages dependencies and environments for single-file scripts.

Create a new script and add inline metadata declaring its dependencies:

$ echo 'import requests; print(requests.get("https://astral.sh"))' > example.py

$ uv add --script example.py requests
Updated `example.py`

Then, run the script in an isolated virtual environment:

$ uv run example.py
Reading inline script metadata from: example.py
Installed 5 packages in 12ms
<Response [200]>

See the scripts documentation to get started.

Tools

uv executes and installs command-line tools provided by Python packages, similar to pipx.

Run a tool in an ephemeral environment using uvx (an alias for uv tool run):

$ uvx pycowsay 'hello world!'
Resolved 1 package in 167ms
Installed 1 package in 9ms
 + pycowsay==0.0.0.2
  """

  ------------
< hello world! >
  ------------
   \   ^__^
    \  (oo)\_______
       (__)\       )\/\
           ||----w |
           ||     ||

Install a tool with uv tool install:

$ uv tool install ruff
Resolved 1 package in 6ms
Installed 1 package in 2ms
 + ruff==0.5.0
Installed 1 executable: ruff

$ ruff --version
ruff 0.5.0

See the tools documentation to get started.

Python versions

uv installs Python and allows quickly switching between versions.

Install multiple Python versions:

$ uv python install 3.10 3.11 3.12
Searching for Python versions matching: Python 3.10
Searching for Python versions matching: Python 3.11
Searching for Python versions matching: Python 3.12
Installed 3 versions in 3.42s
 + cpython-3.10.14-macos-aarch64-none
 + cpython-3.11.9-macos-aarch64-none
 + cpython-3.12.4-macos-aarch64-none

Download Python versions as needed:

$ uv venv --python 3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

$ uv run --python [email protected] -- python --version
Python 3.8.16 (a9dbdca6fc3286b0addd2240f11d97d8e8de187a, Dec 29 2022, 11:45:30)
[PyPy 7.3.11 with GCC Apple LLVM 13.1.6 (clang-1316.0.21.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>>

Use a specific Python version in the current directory:

$ uv python pin 3.11
Pinned `.python-version` to `3.11`

See the Python installation documentation to get started.

The pip interface

uv provides a drop-in replacement for common pip, pip-tools, and virtualenv commands.

uv extends their interfaces with advanced features, such as dependency version overrides, platform-independent resolutions, reproducible resolutions, alternative resolution strategies, and more.

Migrate to uv without changing your existing workflows โ€” and experience a 10-100x speedup โ€” with the uv pip interface.

Compile requirements into a platform-independent requirements file:

$ uv pip compile docs/requirements.in \
   --universal \
   --output-file docs/requirements.txt
Resolved 43 packages in 12ms

Create a virtual environment:

$ uv venv
Using Python 3.12.3
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

Install the locked requirements:

$ uv pip sync docs/requirements.txt
Resolved 43 packages in 11ms
Installed 43 packages in 208ms
 + babel==2.15.0
 + black==24.4.2
 + certifi==2024.7.4
 ...

See the pip interface documentation to get started.

Platform support

See uv's platform support document.

Versioning policy

See uv's versioning policy document.

Contributing

We are passionate about supporting contributors of all levels of experience and would love to see you get involved in the project. See the contributing guide to get started.

FAQ

How do you pronounce uv?

It's pronounced as "you - vee" (/juห viห/)

How should I stylize uv?

Just "uv", please. See the style guide for details.

Acknowledgements

uv's dependency resolver uses PubGrub under the hood. We're grateful to the PubGrub maintainers, especially Jacob Finkelman, for their support.

uv's Git implementation is based on Cargo.

Some of uv's optimizations are inspired by the great work we've seen in pnpm, Orogene, and Bun. We've also learned a lot from Nathaniel J. Smith's Posy and adapted its trampoline for Windows support.

License

uv is licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in uv by you, as defined in the Apache-2.0 license, shall be dually licensed as above, without any additional terms or conditions.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uv-0.9.11.tar.gz (3.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

uv-0.9.11-py3-none-win_arm64.whl (20.0 MB view details)

Uploaded Python 3Windows ARM64

uv-0.9.11-py3-none-win_amd64.whl (21.6 MB view details)

Uploaded Python 3Windows x86-64

uv-0.9.11-py3-none-win32.whl (19.6 MB view details)

Uploaded Python 3Windows x86

uv-0.9.11-py3-none-musllinux_1_1_x86_64.whl (21.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.9.11-py3-none-musllinux_1_1_i686.whl (20.8 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.9.11-py3-none-musllinux_1_1_armv7l.whl (20.3 MB view details)

Uploaded Python 3musllinux: musl 1.1+ ARMv7l

uv-0.9.11-py3-none-manylinux_2_31_riscv64.whl (21.5 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.9.11-py3-none-manylinux_2_28_aarch64.whl (20.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.9.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (21.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.9.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.9.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (23.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

uv-0.9.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (21.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.9.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (20.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (20.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64musllinux: musl 1.1+ ARM64

uv-0.9.11-py3-none-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.9.11-py3-none-macosx_10_12_x86_64.whl (19.9 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.9.11-py3-none-linux_armv6l.whl (20.8 MB view details)

Uploaded Python 3

File details

Details for the file uv-0.9.11.tar.gz.

File metadata

  • Download URL: uv-0.9.11.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11.tar.gz
Algorithm Hash digest
SHA256 605a7a57f508aabd029fc0c5ef5c60a556f8c50d32e194f1a300a9f4e87f18d4
MD5 a34d7fb53a81038b98d511911a90f0cf
BLAKE2b-256 8a083bf76403ea7c22feef634849137fab10b28ab5ba5bbf08a53390763d5448

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-win_arm64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-win_arm64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 4907a696c745703542ed2559bdf5380b92c8b1d4bf290ebfed45bf9a2a2c6690
MD5 96d0073b2557c992dfc4ce8f849bce65
BLAKE2b-256 afd8e07e866ee328d3c9f27a6d57a018d8330f47be95ef4654a178779c968a66

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-win_amd64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-win_amd64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 c65a024ad98547e32168f3a52360fe73ff39cd609a8fb9dd2509aac91483cfc8
MD5 8024252a53b483586cf515331f34d894
BLAKE2b-256 2c2fd51c02627de68a7ca5b82f0a5d61d753beee3fe696366d1a1c5d5e40cd58

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-win32.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-win32.whl
  • Upload date:
  • Size: 19.6 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-win32.whl
Algorithm Hash digest
SHA256 af5fd91eecaa04b4799f553c726307200f45da844d5c7c5880d64db4debdd5dc
MD5 7f402ed77ed63a1e82aa8041540547dd
BLAKE2b-256 8f4dbfd41bf087522601c724d712c3727aeb62f51b1f67c4ab86a078c3947525

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edc14143d0ba086a7da4b737a77746bb36bc00e3d26466f180ea99e3bf795171
MD5 ce378ac0afd4286fa6ff1dc710ccbf6f
BLAKE2b-256 a04243f66bfc621464dabe9cfe3cbf69cddc36464da56ab786c94fc9ccf99cc7

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-musllinux_1_1_i686.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 20.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d414cfa410f1850a244d87255f98d06ca61cc13d82f6413c4f03e9e0c9effc7
MD5 d78d615cfba36b5490bac928e9cabcb9
BLAKE2b-256 6c948cfd1bb1cc5d768cb334f976ba2686c6327e4ac91c16b8469b284956d4d9

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: Python 3, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1f8afc13b3b94bce1e72514c598d41623387b2b61b68d7dbce9a01a0d8874860
MD5 db745b963b59e82672c7dc2248654811
BLAKE2b-256 f40099848bc9834aab104fa74aa1a60b1ca478dee824d2e4aacb15af85673572

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 21.5 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8abfb7d4b136de3e92dd239ea9a51d4b7bbb970dc1b33bec84d08facf82b9a6e
MD5 74f21add537a5c89312019c861cb87cc
BLAKE2b-256 72b2683afdb83e96dd966eb7cf3688af56a1b826c8bc1e8182fb10ec35b3e391

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d901269e1db72abc974ba61d37be6e56532e104922329e0b553d9df07ba224be
MD5 d8ecc054a491cc4bf4e1b5c4921e6243
BLAKE2b-256 52669b8f3b3529b23c2a6f5b9612da70ea53117935ec999757b4f1d640f63d63

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e97906ca1b90dac91c23af20e282e2e37c8eb80c3721898733928a295f2defda
MD5 8751270efabedd3f6bca58da17e1d737
BLAKE2b-256 73da2597becbc0fcbb59608d38fda5db79969e76dedf5b072f0e8564c8f0628b

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cc86940d9b3a425575f25dc45247be2fb31f7fed7bf3394ae9daadd466e5b80
MD5 cb011c74cc93f977fb863dd5959d5b75
BLAKE2b-256 3fcda158ec989c5433dc86ebd9fea800f2aed24255b84ab65b6d7407251e5e31

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5af9117bab6c4b3a1cacb0cddfb3cd540d0adfb13c7b8a9a318873cf2d07e52
MD5 0ad6bf6c864d33ff4f1e396c9f4de5ab
BLAKE2b-256 8951bbf3248a619c9f502d310a11362da5ed72c312d354fb8f9667c5aa3be9dd

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 70137a46675bbecf3a8b43d292a61767f1b944156af3d0f8d5986292bd86f6cf
MD5 3fa7bc65bea6f67ae0c2995152271237
BLAKE2b-256 5a8fdf45b8409923121de8c4081c9d6d8ba3273eaa450645e1e542d83179c7b5

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92ff773aa4193148019533c55382c2f9c661824bbf0c2e03f12aeefc800ede57
MD5 82e8d65ee2cca30d26d6148c3e33788d
BLAKE2b-256 a31d6a227b7ca1829442c1419ba1db856d176b6e0861f9bf9355a8790a5d02b5

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ef1982295e5aaf909a9668d6fb6abfc5089666c699f585a36f3a67f1a22916a
MD5 9629f057ec0a0395840a89cb354ee5c6
BLAKE2b-256 6db486d9c881bd6accf2b766f7193b50e9d5815f2b34806191d90ea24967965e

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb680948e678590b5960744af2ecea6f2c0307dbb74ac44daf5c00e84ad8c09f
MD5 71b784eefa119f1e1485e55b0b576688
BLAKE2b-256 d69ad4080e95950a4fc6fdf20d67b9a43ffb8e3d6d6b7c8dda460ae73ddbecd9

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48548a23fb5a103b8955dfafff7d79d21112b8e25ce5ff25e3468dc541b20e83
MD5 79cc330654072fc3eaf1df0fa582444d
BLAKE2b-256 bff36b9fac39e5b65fa47dba872dcf171f1470490cd645343e8334f20f73885b

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 19.9 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a31b0bd4eaec59bf97816aefbcd75cae4fcc8875c4b19ef1846b7bff3d67c70
MD5 3a5a74388a2464f6fe2ebf2a4e4fb650
BLAKE2b-256 f51feafd39c719ddee19fc25884f68c1a7e736c0fca63c1cbef925caf8ebd739

See more details on using hashes here.

File details

Details for the file uv-0.9.11-py3-none-linux_armv6l.whl.

File metadata

  • Download URL: uv-0.9.11-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 20.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for uv-0.9.11-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 803f85cf25ab7f1fca10fe2e40a1b9f5b1d48efc25efd6651ba3c9668db6a19e
MD5 d20b7668059197aaadee4435ff809493
BLAKE2b-256 77268f917e9faddd9cb49abcbc8c7dac5343b0f61d04c6ac36873d2a324fee1a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page