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 and ty.

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
Checked 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.12 3.13 3.14
Installed 3 versions in 972ms
 + cpython-3.12.12-macos-aarch64-none (python3.12)
 + cpython-3.13.9-macos-aarch64-none (python3.13)
 + cpython-3.14.0-macos-aarch64-none (python3.14)

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 pypy@3.8 -- 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 requirements.in \
   --universal \
   --output-file 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 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.

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.

What platforms does uv support?

See uv's platform support document.

Is uv ready for production?

Yes, uv is stable and widely used in production. See uv's versioning policy document 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.11.28.tar.gz (6.0 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.11.28-py3-none-win_arm64.whl (25.8 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.28-py3-none-win_amd64.whl (27.6 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.28-py3-none-win32.whl (24.7 MB view details)

Uploaded Python 3Windows x86

uv-0.11.28-py3-none-musllinux_1_1_x86_64.whl (27.3 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.28-py3-none-musllinux_1_1_i686.whl (26.2 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.28-py3-none-manylinux_2_31_riscv64.whl (26.5 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.28-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (26.4 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64musllinux: musl 1.1+ riscv64

uv-0.11.28-py3-none-manylinux_2_28_aarch64.whl (25.7 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.28-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.28-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.28-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (27.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.28-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (26.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.28-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.28-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (25.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7lmusllinux: musl 1.1+ ARMv7l

uv-0.11.28-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (25.6 MB view details)

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

uv-0.11.28-py3-none-macosx_11_0_arm64.whl (23.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.28-py3-none-macosx_10_12_x86_64.whl (25.0 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.28-py3-none-linux_armv6l.whl (25.9 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.28.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28.tar.gz
Algorithm Hash digest
SHA256 df86cfd135542a833e9f84708b3b8dbaa987a3b9db85b267062db49ab639d242
MD5 18851a758736d04f9b4dbdb1764bb5bc
BLAKE2b-256 a2a2bfd6755b40682ef7e775ddb9d52823dea6551352f4244106da4bad37cd3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-win_arm64.whl
  • Upload date:
  • Size: 25.8 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 e94560995737c50525d586da553521fbafe9ef06641e7d885db4b270f53ee84d
MD5 95d2f53910708b58db5f1877d90a550d
BLAKE2b-256 5794dc31a771eac989973219c730552dbcf5bf7ea6652dba4ba89b1bbdc75a80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-win_amd64.whl
  • Upload date:
  • Size: 27.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4fcf2c8d9f1444b900e6b8dbbb828825fb76eca01acd18aeaa5c90240408cda
MD5 927cd14b645900440334299502e53e80
BLAKE2b-256 40bcd67b18cddd54c503c7bad2b189a47fd7a1d07ea10b9212624f892b985498

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-win32.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-win32.whl
Algorithm Hash digest
SHA256 692edef9cf1d2dd69bb9d9fc01f281a82610547900ce227a3cb269cdf988b5ce
MD5 e56768a7152fe38e48235abe274613e8
BLAKE2b-256 f0c9db4cb824777d013272ccfa77db07a4d12bf1584899458c1917a4b5a4069d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 27.3 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fcfda468448093f4d5961ca8c068b0aeec2d02f7226d58ee8513321a929fe4f
MD5 eb5f918dc9fe97bed7667ee716ad58d3
BLAKE2b-256 d0c2163e89424668d6c01499efbe85a854ad38f07834bde3f2b16df159eab1d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d01c7c665511c047f350e587b8b6557c96b61b2eddafbcd8964f0cc2f5b9afbe
MD5 a87c6b02ec158e9a51184cfcf5df47a9
BLAKE2b-256 cfc5b26d82e9297c29c201f61698ee56bba956f94953b23089532d026a97d93f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 26.5 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 47e3f12fe6f5c80a01639d8df36efde7bdddfc3bbc52250df623547d8d393105
MD5 c6a414ce68f99e71ce8014c8caedfa49
BLAKE2b-256 81498093318206dee51b5cfcabbf110892ff63cfd897a5df002e2d8b61350fe6

See more details on using hashes here.

File details

Details for the file uv-0.11.28-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl.

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 2e91eb8a0b00d5f4427195fc818bcaa4d8bb4fccb79f4e973e74802419ab06ca
MD5 403c8f95968153a2e08ffb0c2db14088
BLAKE2b-256 6435b83b7c599474aaf1277c2224c09679640c2320562155c4b6ece1c6f014c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fab3c31007a611866475824a666f5a721bf0c9335db806355a97fcfba2a6bbb7
MD5 42c2ce3c402f678e8afd908914d9c548
BLAKE2b-256 dd8cb15212904e6f0aa4a3709dc86838c6fa070fe97c7e96b3f10174a26b16e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 27.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49fe42df9f42056037473f3876adec1615709b57d3470ed39178ff420f3afb9f
MD5 b5b531496050a0484802dd07b9476ef1
BLAKE2b-256 752e62273ee6c9fbebccd8248c153b44870f81ebf5267c31edf4c095d78537fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 27.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c60294e3be4fa203a04015fc02ac8a31d936e86fde06dcb43c7f8f22661dfff
MD5 ad4928d41f3178e0b39263f01d2a23ed
BLAKE2b-256 d4fd208607a7f5f86188775387fe0839ef97cf8d013e8d0e909140b7fdb7d0d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 27.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b3d0ea11e83b373a2166b82dd0864f5677fbadf98db64541ab2e59c42968905
MD5 95798595a77f685029ad7e38669fd41c
BLAKE2b-256 cd27a9b68a15a5fe8db7103bea514c2adb79e9b1114fc8dc96fb39dbd7a5b898

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 26.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f7ce6f6015a3e857bc6a663514afa62856b669ee5c1bd120e4c58ac2ef5513d
MD5 6fecdac3fff6917ccb027c8a73881a3b
BLAKE2b-256 d093720f45af65ebda460166dc64f3318acd65f7bd3a8e326fbd21810fd920ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4a9fe246cb2882532277f5d5e5bd8a59462981462a2f98426f35ecfca82460e
MD5 9457d8be0c4a922e895d35f4a088e65a
BLAKE2b-256 6c7750fef66f4e26bf771429e1d88f849476d8ed21f0fb0708acaa53dc5772a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 185416a5316df8c5442b47178349f1f27fc1034468670ac1fb499eae3b25bd68
MD5 b9fd05acfec26f6ec421dae33d372b23
BLAKE2b-256 07aa4c0c71075ba66cc594f856cbd98844058fcb53cb4dd8a6fccda8419562bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 041e4b80bebc58d7142ac9394370cacd73185fd8d066d6675d14707d83408f6d
MD5 7de5df3c32a6c14625da2e2ebff008c4
BLAKE2b-256 b84dc9fe448dcd5cf65a5f054517aa42551b7f0920710a6891d98af321a06b22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9eb317b1cdb249887df77ac232d8a9448f26858b2399f9f2949c6a7b9bedf88
MD5 42131c12a6d68d324288deea4b711107
BLAKE2b-256 32e149968cab72f16a7d6c45d095d319f9efbe8ce05f3f15c5f7104493694289

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb11d94cb848ff58af79e0bb5e4037cd324d27dbe2dabb7746db698b724a9a20
MD5 83eec90db65c7d2ee37388b631868a88
BLAKE2b-256 105450c85a663ce723e061523ab4ac8b01b650077584e80950f9c93fd073979f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.28-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","subcommand":["publish"]},"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.11.28-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 ae5bbdb6150adcd625f5fa720b04abf2014247d878d1035f19751bb0e7274543
MD5 09deb759dfe513e8af49607f13b2de1f
BLAKE2b-256 065d507b829e79353fe3dcb2779cde8f64497d9c99f9b08b18b8f55ee3bf1786

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