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

Use a specific Python version in the current directory:

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

See the Python installation documentation to get started.

The pip interface

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

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

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

Compile requirements into a platform-independent requirements file:

$ uv pip compile 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.7.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.7-py3-none-win_arm64.whl (23.9 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.7-py3-none-win_amd64.whl (25.4 MB view details)

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.7-py3-none-musllinux_1_1_x86_64.whl (25.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.7-py3-none-musllinux_1_1_i686.whl (24.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.7-py3-none-manylinux_2_31_riscv64.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.7-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (24.5 MB view details)

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

uv-0.11.7-py3-none-manylinux_2_28_aarch64.whl (23.7 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (25.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (25.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (23.3 MB view details)

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

uv-0.11.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.6 MB view details)

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

uv-0.11.7-py3-none-macosx_11_0_arm64.whl (21.8 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.7-py3-none-macosx_10_12_x86_64.whl (23.2 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.7-py3-none-linux_armv6l.whl (23.8 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.7.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7.tar.gz
Algorithm Hash digest
SHA256 46d971489b00bdb27e0aa715e4a5cd4ef2c28ea5b6ef78f2b67bf861eb44b405
MD5 23656c888fce8cbb287a8347fc272a02
BLAKE2b-256 9b7d17750123a8c8e324627534fe1ae2e7a46689db8492f1a834ab4fd229a7d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 6158b7e39464f1aa1e040daa0186cae4749a78b5cd80ac769f32ca711b8976b1
MD5 70dd7a0995aa16c0a4f229e3f372dd6a
BLAKE2b-256 1bbbe6bfdea92ed270f3445a5a3c17599d041b3f2dbc5026c09e02830a03bbaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 5674dfb5944513f4b3735b05c2deba6b1b01151f46729d533d413a9a905f8c5d
MD5 dba976d8aaadb338c31a64de5ca2c1e1
BLAKE2b-256 a61db73e473da616ac758b8918fb218febcc46ddf64cba9e03894dfa226b28bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-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.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-win32.whl
Algorithm Hash digest
SHA256 553e67cc766d013ce24353fecd4ea5533d2aedcfd35f9fac430e07b1d1f23ed4
MD5 15bfa3c951b386687b9809fa2267d423
BLAKE2b-256 4b7416d229e1d8574bcbafa6dc643ac20b70c3e581f42ac31a6f4fd53035ffe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0df59ab0c6a4b14a763e8445e1c303af9abeb53cdfa4428daf9ff9642c0a3cce
MD5 743b23e38e59f1507c3bae55fe46dc2d
BLAKE2b-256 13bab87e358b629a68258527e3490e73b7b148770f4d2257842dea3b7981d4e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f394331f0507e80ee732cb3df737589de53bed999dd02a6d24682f08c2f8ac4f
MD5 c4848b72fefdc1c1d9f99192a295f3a8
BLAKE2b-256 b69fc57dc03b48be17b564e304eb9ff982890c12dfb888b1ce370788733329ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 750ee5b96959b807cf442b73dd8b55111862d63f258f896787ea5f06b68aaca9
MD5 633f997873386eb91a0a6572b5471d4e
BLAKE2b-256 8c89d49480bdab7725d36982793857e461d471bde8e1b7f438ffccee677a7bf8

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ceae53b202ea92bc954759bc7c7570cdcd5c3512fce15701198c19fd2dfb8605
MD5 fefc07a69fcd8d0f00a0e1058b8c44b3
BLAKE2b-256 68553b517ec8297f110d6981f525cccf26f86e30883fbb9c282769cffbcdcfca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e4d5e31bea86e1b6e0f5a0f95e14e80018e6f6c0129256d2915a4b3d793644d
MD5 e741f1484559cf878d84240e6031c46c
BLAKE2b-256 83eb4e1557daf6693cb446ed28185664ad6682fd98c6dbac9e433cbc35df450a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb91f52ee67e10d5290f2c2897e2171357f1a10966de38d83eefa93d96843b0c
MD5 ce93342a7bf3e878d7205707fb962e3e
BLAKE2b-256 4e195970e89d9e458fd3c4966bbc586a685a1c0ab0a8bf334503f63fa20b925b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd48823ca4b505124389f49ae50626ba9f57212b9047738efc95126ed5f3844d
MD5 d45d6f1fa543e5a230fc2244e1ee3e4d
BLAKE2b-256 452db0b68083859579ce811996c1480765ec6a2442b44c451eaef53e6218fbae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d6a17507b8139b8803f445a03fd097f732ce8356b1b7b13cdb4dd8ef7f4b2e0
MD5 cf3d0736431bd94b0cde70fe617452b3
BLAKE2b-256 6899e246962da06383e992ecab55000c62a50fb36efef855ea7264fad4816bf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23d457d6731ebdb83f1bffebe4894edab2ef43c1ec5488433c74300db4958924
MD5 1207faf934217925cd97ca042c6799ed
BLAKE2b-256 2408c1af05ea602eb4eb75d86badb6b0594cc104c3ca83ccf06d9ed4dd2186ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 fab0bb43fbbc0ee5b5fee212078d2300c371b725faff7cf72eeaafa0bff0606b
MD5 49ed7f44d67f4729e9ce54b455740b19
BLAKE2b-256 adde989a69634a869a22322770120557c2d8cbba5b77ec7cfad326b4ec0f0547

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.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.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5985a15a92bd9a170fc1947abb1fbc3e9828c5a430ad85b5bed8356c20b67a71
MD5 80cfe5f92ad75ef48635cb3fc22bb170
BLAKE2b-256 f27ffbed29775b0612f4f5679d3226268f1a347161abc1727b4080fb41d9f46f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 162fa961a9a081dcea6e889c79f738a5ae56507047e4672964972e33c301bea9
MD5 569bb49218e0abc878231c096912d7f7
BLAKE2b-256 8afaf379be661316698f877e78f4c51e5044be0b6f390803387237ad92c4057f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b2fe1ec6775dad10183e3fdce430a5b37b7857d49763c884f3a67eaa8ca6f8a
MD5 78131d11538cae2abea2f4bc13a4d3e4
BLAKE2b-256 b2f536ff27b01e60a88712628c8a5a6003b8e418883c24e084e506095844a797

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.7-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","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.7-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 f422d39530516b1dfb28bb6e90c32bb7dacd50f6a383cd6e40c1a859419fbc8c
MD5 cfd9a285ac2803a8e940bab01666a4e1
BLAKE2b-256 b25b2bb2ab6fe6c78c2be10852482ef0cae5f3171460a6e5e24c32c9a0843163

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