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

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.

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.26.tar.gz (3.8 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.26-py3-none-win_arm64.whl (22.2 MB view details)

Uploaded Python 3Windows ARM64

uv-0.9.26-py3-none-win_amd64.whl (23.7 MB view details)

Uploaded Python 3Windows x86-64

uv-0.9.26-py3-none-win32.whl (21.0 MB view details)

Uploaded Python 3Windows x86

uv-0.9.26-py3-none-musllinux_1_1_x86_64.whl (23.5 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.9.26-py3-none-musllinux_1_1_i686.whl (22.4 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.9.26-py3-none-manylinux_2_31_riscv64.whl (23.1 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.9.26-py3-none-manylinux_2_28_aarch64.whl (22.2 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.9.26-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.9.26-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (24.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.9.26-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (24.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

uv-0.9.26-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (23.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.9.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (22.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (22.2 MB view details)

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

uv-0.9.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (22.0 MB view details)

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

uv-0.9.26-py3-none-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.9.26-py3-none-macosx_10_12_x86_64.whl (21.5 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.9.26-py3-none-linux_armv6l.whl (22.6 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.9.26.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26.tar.gz
Algorithm Hash digest
SHA256 8b7017a01cc48847a7ae26733383a2456dd060fc50d21d58de5ee14f6b6984d7
MD5 13cb71a96350581801784f9e5bdfb39a
BLAKE2b-256 ff6aef4ea19097ecdfd7df6e608f93874536af045c68fd70aa628c667815c458

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-win_arm64.whl
  • Upload date:
  • Size: 22.2 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 344ff38749b6cd7b7dfdfb382536f168cafe917ae3a5aa78b7a63746ba2a905b
MD5 8856a98c429e2509be67cf026f60ca9c
BLAKE2b-256 ed9d3b2631931649b1783f5024796ca8ad2b42a01a829b9ce1202d973cc7bce5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-win_amd64.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 0315fc321f5644b12118f9928086513363ed9b29d74d99f1539fda1b6b5478ab
MD5 729dcab0ce0c9ecc4f6803e3db46eadf
BLAKE2b-256 075deb80c6eff2a9f7d5cf35ec84fda323b74aa0054145db28baf72d35a7a301

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-win32.whl
  • Upload date:
  • Size: 21.0 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-win32.whl
Algorithm Hash digest
SHA256 10d075e0193e3a0e6c54f830731c4cb965d6f4e11956e84a7bed7ed61d42aa27
MD5 43e5659f1daf13ee1c8be961c2b40cb9
BLAKE2b-256 503e4a7e6bc5db2beac9c4966f212805f1903d37d233f2e160737f0b24780ada

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 25278f9298aa4dade38241a93d036739b0c87278dcfad1ec1f57e803536bfc49
MD5 4c278d5defc0d5e4c8bc06139d742315
BLAKE2b-256 6be2be683e30262f2cf02dcb41b6c32910a6939517d50ec45f502614d239feb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 22.4 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c6d8650fbc980ccb348b168266143a9bd4deebc86437537caaf8ff2a39b6ea50
MD5 76ca39e1be80c5c7e9f992d18e72319b
BLAKE2b-256 40c9744537867d9ab593fea108638b57cca1165a0889cfd989981c942b6de9a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 63c6a1f1187facba1fb45a2fa45396980631a3427ac11b0e3d9aa3ebcf2c73cf
MD5 b0b2c95d88cf4f70d3766563db9b7eed
BLAKE2b-256 fcc020a597a5c253702a223b5e745cf8c16cd5dd053080f896bb10717b3bedec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 22.2 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60a66f1783ec4efc87b7e1f9bd66e8fd2de3e3b30d122b31cb1487f63a3ea8b7
MD5 eee03a66b8fbfd85924597a71407ff07
BLAKE2b-256 23a045893e15ad3ab842db27c1eb3b8605b9b4023baa5d414e67cfa559a0bff0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7e89798bd3df7dcc4b2b4ac4e2fc11d6b3ff4fe7d764aa3012d664c635e2922
MD5 01a5323ca94904cf667ce32afe8aa4fc
BLAKE2b-256 3816a07593a040fe6403c36f3b0a99b309f295cbfe19a1074dbadb671d5d4ef7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d8c62a501f13425b4b0ce1dd4c6b82f3ce5a5179e2549c55f4bb27cc0eb8ef8
MD5 9d0e18cd4b3701c906605774e7d72fd9
BLAKE2b-256 9b9c2bae010a189e7d8e5dc555edcfd053b11ce96fad2301b919ba0d9dd23659

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 182f5c086c7d03ad447e522b70fa29a0302a70bcfefad4b8cd08496828a0e179
MD5 e587630f1d3ad2059c5b0070b7e10ec2
BLAKE2b-256 01435d7f360d551e62d8f8bf6624b8fca9895cea49ebe5fce8891232d7ed2321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 89a7beea1c692f76a6f8da13beff3cbb43f7123609e48e03517cc0db5c5de87c
MD5 1d656d4a8ca19b07b8d0c50af2d9468d
BLAKE2b-256 c316860990b812136695a63a8da9fb5f819c3cf18ea37dcf5852e0e1b795ca0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4bf700bd071bd595084b9ee0a8d77c6a0a10ca3773d3771346a2599f306bd9c
MD5 976d1f65f1238f210e86fb0d269f8226
BLAKE2b-256 102d4be446a2ec09f3c428632b00a138750af47c76b0b9f987e9a5b52fef0405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 22.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8610bdfc282a681a0a40b90495a478599aa3484c12503ef79ef42cd271fd80fe
MD5 1067e203890aa0146e8414c37ac2361d
BLAKE2b-256 38697fa03ee7d59e562fca1426436f15a8c107447d41b34e0899e25ee69abfad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 22.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1ba860d2988efc27e9c19f8537a2f9fa499a8b7ebe4afbe2d3d323d72f9aee61
MD5 84815ece8c7b8a53e65ccfc5f928df1d
BLAKE2b-256 aaa9687fd587e7a3c2c826afe72214fb24b7f07b0d8b0b0300e6a53b554180ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea296b700d7c4c27acdfd23ffaef2b0ecdd0aa1b58d942c62ee87df3b30f06ac
MD5 267c85745b3e8326b64dc72eada6889f
BLAKE2b-256 ba3db8186a7dec1346ca4630c674b760517d28bffa813a01965f4b57596bacf3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 20.2 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b012e6c4dfe767f818cbb6f47d02c207c9b0c82fee69a5de6d26ffb26a3ef3c
MD5 839eece9ec18b705d6439ffed082e199
BLAKE2b-256 0da2664a338aefe009f6e38e47455ee2f64a21da7ad431dbcaf8b45d8b1a2b7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 21.5 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b815e3b26eeed00e00f831343daba7a9d99c1506883c189453bb4d215f54faac
MD5 7fcd0e82823b70ae9102ee2185c6ab1d
BLAKE2b-256 a58b68ac5825a615a8697e324f52ac0b92feb47a0ec36a63759c5f2931f0c3a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.26-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.25 {"installer":{"name":"uv","version":"0.9.25","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.9.26-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 7dba609e32b7bd13ef81788d580970c6ff3a8874d942755b442cffa8f25dba57
MD5 a1a7365a95778b915b0940b0b26076f7
BLAKE2b-256 fee15c0b17833d5e3b51a897957348ff8d937a3cdfc5eea5c4a7075d8d7b9870

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