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.5.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.5-py3-none-win_arm64.whl (23.8 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.5-py3-none-win_amd64.whl (25.3 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.5-py3-none-win32.whl (22.9 MB view details)

Uploaded Python 3Windows x86

uv-0.11.5-py3-none-musllinux_1_1_x86_64.whl (25.0 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.5-py3-none-musllinux_1_1_i686.whl (24.0 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.5-py3-none-manylinux_2_31_riscv64.whl (24.3 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.5-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (24.3 MB view details)

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

uv-0.11.5-py3-none-manylinux_2_28_aarch64.whl (23.5 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (24.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (23.2 MB view details)

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

uv-0.11.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.4 MB view details)

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

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

Uploaded Python 3macOS 11.0+ ARM64

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

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.5-py3-none-linux_armv6l.whl (23.7 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.5.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5.tar.gz
Algorithm Hash digest
SHA256 ad7582ddd9d5410ecde6d609a3bf66e01c0ec4bc8e2bb9aeaff76b033a5ec3ae
MD5 0d64e178526acd03dbd8d00d824bd8bd
BLAKE2b-256 c1cc78a91ce11d04ce3b5ea7ea543cfe28f1564868bb5c34346fe727ae2078f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 b6a32bf1221cb5d25a7a3c4b4e49f3291d04574b6c2f22d11707294737db722d
MD5 028abc654915e4f6d67138cabf9b99f5
BLAKE2b-256 1b420026690d18aebbdc8b4b72f884555e2349e99822115f5938d283044e12f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 d0c0bc72f40daffe52d4479027bc37e80ed573f3ded59c5b1acd550a78ac8ebb
MD5 fa9955c7da0b6ae943e601950c5c0131
BLAKE2b-256 00d6f49e3a48347cadffc5be673c91aa81c411fd67708f1488f87865558f75ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-win32.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-win32.whl
Algorithm Hash digest
SHA256 137a529da317c24639a0c8d0d632091317d987bf81b8cad8f1ef11dabc0e1e07
MD5 314fce6fc555e92c13c10aa7b8eff4f2
BLAKE2b-256 a2f38e8e9c19fdb3a223b3ec53d86a3ab4f7bc541d6170b339b916cc7c81e0be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 007177234bf6e3f4e22e12b9a72764adb316fe76883c4a766c6d4a887d0bc252
MD5 6ccc528e127904b7d68d571b2bd272a3
BLAKE2b-256 93c4a78900d0181c8d43581518f19b2c8a9ce59ca80c609141c112f271222ec1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cacd4288721797d2987ecbdf7b016cebdaafdfed2034ab8e442e3b96721db6ac
MD5 6c74e42dee0f9209d56ace1ca50a44a9
BLAKE2b-256 e660df2dfd7cf1d03665a97023c69cca4aa6330e72cab09994ea19b98d922bff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d285946607782d36a016d29753a64636d4fb3c7e284e11802b0e26a050d03e85
MD5 9c5b4293d836130ca489a10f881ce83f
BLAKE2b-256 8dffc4a0ee964ef3662927dffc286d388571833aef8044462350bd38590f3c13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 24.3 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 f2b89af45b8dc932fcc36270b032594fad44af9194eba7331d3b2a62f42da41d
MD5 a686d481b0bc1548cb1c7bca6d01d44b
BLAKE2b-256 ab3682d03488da99e774557db5e25e0e4e59e15846dc193e78f38f2fe46d3f69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eeadc114cc6c076f93526e89f70323865568f2b46c3209d731e7e6496ad5bc31
MD5 51274980d7bbb6b0c625cbbdc01b3d8f
BLAKE2b-256 b14ed078af5949b1d4769a379b753f3d407d7515fcf36f0499e350faddb2b8e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d0e40e5216714c8f5a502b27282c5f0bbf7994ae4d09fb09a728a2fe8f74799
MD5 90f3d024ccb8b8226ee334d47ec11cca
BLAKE2b-256 3e32a309c83d7c71307331cc657da952e2c8b1368918be0abf53ce200f976d90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82c3aad922362a393373a1681dfba108bca456e9b20f7d32c3338034ba6c8375
MD5 6bb253dc7870ef306887d6997bf465e2
BLAKE2b-256 f3b95d01bb1b9f315787c926b1ea3265125a5cacf00ab3cec7732f23dd4fff65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0820d2b87a50ab05721515d159010dc176aff98d35629550b733f6f3020e9419
MD5 4bcd960076484d0448eaa3340945508f
BLAKE2b-256 6a1515dfd92136d651cf2e2a003acceea45bda53db3ecf56f7891f791a6e07f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb6ced97cd44b63aa58144e9a307e0f94a1b133220d9734f405743b20ba5567e
MD5 67ac4d9313a8962331c70fdc7114ff0a
BLAKE2b-256 08cb4c731f7b48d1e7a4242c33064b0c4c88d151cdf638ecaf8117fca267f6fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 192b966efd1ffd230af410e1c969f94e18ef37964780f45a786dea25a6ca3d4e
MD5 2ead0eae26a57f5e68a03ad4a3368c86
BLAKE2b-256 c0418cd9595481819e9e000cf708ea07d4eb4d347de7d7117b47ae8e7e258713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 063cedb810ac34a4796bca738118eb15718a3f3c0d7c7caa5f98dd1d4f65fc2e
MD5 b6b6f4f95b6fcc56873f757930923067
BLAKE2b-256 c7e9b5417252167ecea577a3fb254d9cf8ea63c3338017c199c9d261a33ae276

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8fb1b7cedbe6e6f60e08cdd7aa64dcbd29ae4712089fbaab15dc2a8e8f243c4f
MD5 c835142d674be7e82c7b83584909f4ae
BLAKE2b-256 584135046e9c618547a635ce926aa48fa3787946a53ceb66f330c384e26bb34c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-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.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e34d016099248ec2be4e890a71c05a225ab256ba815571eff60bbbf709410e2
MD5 cd992de1911d58dbfe682a996829d4e5
BLAKE2b-256 60d91d890e98be779e06cc4c7c2576ff1722a20d31c3b50f772c6add9ad2c3b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-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.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f92fd58727bcf12615e4322006a0590f4375fced6529052e7c13a81f4636846c
MD5 bbc5d90304b358271a7e5c877100e970
BLAKE2b-256 f04c5098a21ff28c88b969f0ca9150f44148cfe5e6c9388af422a176c505c6d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.5-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.4 {"installer":{"name":"uv","version":"0.11.4","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.5-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 6fb915d9667e2692bd96ea927d46c5b435fe436312e52ce00790b5844af7b848
MD5 3a42eb6e8a791257e5b710923c2ac5b2
BLAKE2b-256 aa0cb78efab6bdd38a278752ec551f640b8857f2ccd846a9864e5bcf4d24707a

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