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.12.tar.gz (4.1 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.12-py3-none-win_arm64.whl (23.6 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.12-py3-none-win_amd64.whl (25.2 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.12-py3-none-win32.whl (22.6 MB view details)

Uploaded Python 3Windows x86

uv-0.11.12-py3-none-musllinux_1_1_x86_64.whl (24.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.12-py3-none-musllinux_1_1_i686.whl (23.8 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.12-py3-none-manylinux_2_31_riscv64.whl (24.2 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.12-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (24.1 MB view details)

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

uv-0.11.12-py3-none-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (24.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (23.1 MB view details)

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

uv-0.11.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.3 MB view details)

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

uv-0.11.12-py3-none-macosx_11_0_arm64.whl (21.7 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.12-py3-none-macosx_10_12_x86_64.whl (23.1 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.12-py3-none-linux_armv6l.whl (23.5 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.12.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12.tar.gz
Algorithm Hash digest
SHA256 2d85d1fe06bafddf9632ec5c8ac24f86bd6eb7ec21e650be8c3565b600b502c9
MD5 a3d5ea1bc9f968dbc014ff19be834bca
BLAKE2b-256 a6c120f3946ddf75e078eaac1f8ce5c7f3af1c713d4ccf1da9afba9d79b0c9c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 b5ef4274fae91700e9a010c8a904f36c3ad1253e6880f54aa5a6e1d6321b4117
MD5 d4c1ae0fcdd8523d2391bfe8ab644f25
BLAKE2b-256 1bfc1ec8943b942750e92476e58896602f2aebdada3659ca71dab37b6be94e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.2 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 8c0d17c5a6c9519244271b5e454b8748127bb848b6bb30250c417ac7405de28e
MD5 788df897037b5237547607c8097a23da
BLAKE2b-256 2f8cba75190f8d8169e996f723f4ef090aa78a002a192585de96ddcb0ab07df2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-win32.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-win32.whl
Algorithm Hash digest
SHA256 3de47735af15df6f6c34771de43d547612149611de6b75295f25501950e27a3e
MD5 62e9edfa3496286398a0940a9aa4eba4
BLAKE2b-256 f7a21fa50da5cecce662caf17dc10852cb86e608b6fe23b96b15d2841078a0cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 97d4653fc4fc519de7cd5d468f819b62b73b0243f9428835cf2d3758750e4563
MD5 a14b7818238cd0463cda20762a7ff8d6
BLAKE2b-256 ac1e01f9095a939339d8e8dc0343bf84c5d237a6d723695d751f2f7952cc349e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5170579a363f55128918e23c0e9af1a4c5532419d2a1bce3fe888d49b4bb0ef5
MD5 958c985a88c49f34ee51b3f77bdbcbf2
BLAKE2b-256 be0afe3bd7dea02304163c831a82c10530d4199e89d940400a3cd8ef2d3bdacf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b80ea799efa0c3a86534ffcdf6a99e291fca4517209d34e861adf28d51cf573c
MD5 973ab1257a3d5c0edc93d9e7bed9ecf9
BLAKE2b-256 01f9442cc171a87abb0a322c66bf20593e49c1fabf659cde930d49471d925ae9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 eb7fd1c040581906d09a900785efa41c229fece1b193c119b2913fee5459e29b
MD5 9e0a9061905cd7a694061904d65a9cd1
BLAKE2b-256 78f115392d25d067e516e6efcead75cca6ff1b5024d172148b4f9f91d0edd3ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81977a8a86346775cca24c94dcd498e4bbbcdf5c6fd60b1f2922fcab2208e653
MD5 8466a9a1996c13e8c07ad5eb86e2218c
BLAKE2b-256 01e86b18397e17ce26479845e3fd3a4d9f558f43c7bd2cf1f31a29c31578fae4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4d328e49a5104932677df064321cb2ac79e13fa81303593d673de2395ff6f95
MD5 fd5c38d873a2dbe97412a09421bdd682
BLAKE2b-256 1f6dc5358fea35ef36ae21592ad7bc3645679bc202be39f0f82cba801375c347

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcae32b4ce5ba6f127018ec89ffbfb3c16c83baec23954231051a8d799558e23
MD5 9468d43aa04652d6a8e8b9b0967f9694
BLAKE2b-256 6a1ba5adc0ef874ed990418ee1eeec2ccd1ec7f659bf5799c06ae32da19146bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd262f13f9340e70ee60f97c345cfd5f67bfd5e5b373e43f3d54b85a893df502
MD5 5cf1885030a2fec53eb4d736908d418a
BLAKE2b-256 01761dac20e5893970be5cfd5015c84372e9758b03a05000c26e5fa58e76e0e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 553af0feadb6d8446ff05db1c30bebba33061ac23fb81ccb69838fc480e8c33f
MD5 9c9699a9db7cb7528bd0705af758f525
BLAKE2b-256 c3cffea1d305718826f4227de10a271b35f048c01e2e561e2720c75809cd4bd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7807dcbbf47ca738d6123facbdab439d1a358681dd1f6caba8a1d9c3e7ce0e3
MD5 288d8734e826d1d6060aa402c6562d6c
BLAKE2b-256 42c3dc080a98514d015705d40bb85774639d28888785f643d784baaec832ce1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d9e716e454aa9c07f192f921e08db3a07a9c6f01886c835eaa10cc79b2213e40
MD5 3549de50ab77e3b28013e9c84390c3a6
BLAKE2b-256 bb5bb078fe3e83cd27e4e73fef525acf4f6c3540236b3326f14d05c2d65167a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3187c205a82f4ff3b29447483a355f3ddd740a3f5e0128db3bb5c416adacd569
MD5 fecc307e3398366c639cee8b4e5572cf
BLAKE2b-256 8b2812f7fc22c65c76470edf76f351f89cc6d11dd1b54c8f865afc643aa018a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df25f369365aea90b768d396baf49ea62ab9e9d99a790a7f6643c8a72c390a28
MD5 006b64f62ff15d6dc5d89831bfe5b6e9
BLAKE2b-256 7a1ea0607bcccfdaa4b28e5bc79f74242f44d399b6ff58c3a6e3c18b99af8681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6cf0cc4e5a83c1e1a6894631c317c6bd674b760712a0d106133d115b6fa451d8
MD5 30699f41fa33f9764cee4a95e1be3bf9
BLAKE2b-256 17baac335ec49f34f2aa4f8ecaf62cece1096c09db311ddbdfddb98d472d4208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.12-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","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.12-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 71b3f7956f3df2e9d1b25b4c6fcfd47855160c0187260d01f238000a72c867ba
MD5 0b954943f5cb7631614cebae1985772d
BLAKE2b-256 9a7102cc671b2d519f45e8833e97f7cce5ffbbaf3f12edf709726cdacc0778e8

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