Skip to main content

An extremely fast Python package and project manager, written in Rust.

Project description

uv

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.30.tar.gz (6.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

uv-0.11.30-py3-none-win_arm64.whl (25.9 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.30-py3-none-win_amd64.whl (27.8 MB view details)

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.30-py3-none-musllinux_1_1_x86_64.whl (27.2 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

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

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

uv-0.11.30-py3-none-manylinux_2_28_aarch64.whl (25.6 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.30-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.30-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.30-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (27.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

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

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.30-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

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

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

uv-0.11.30-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (25.5 MB view details)

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

uv-0.11.30-py3-none-macosx_11_0_arm64.whl (23.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.30-py3-none-macosx_10_12_x86_64.whl (24.9 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.30-py3-none-linux_armv6l.whl (26.0 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.30.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30.tar.gz
Algorithm Hash digest
SHA256 06f4b824c6123df1cd00a68367f970870e7252b0b11a4d03a06b2b4b433afcda
MD5 3f78cc4f055214e136c1f969bda76297
BLAKE2b-256 8157ac561926d958cd92c92840541bfbf0b0abc00a607beab8e008b1146b2437

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-win_arm64.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 b99f98873c785745755cb32c165ec8e45e019b63ec71540fa0185cda9192d18d
MD5 9d1c1fc78eab2ee415d3960138f47468
BLAKE2b-256 1f6d29aceb591402cd8f8f2cc21bbc6f28720e56ef631c079d2fbd3bfcee714c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-win_amd64.whl
  • Upload date:
  • Size: 27.8 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 3b1f0dc345a7c2101a8e5f9e36840cc40a36499644e468c59a13fd235072b457
MD5 088e0b4ad9a20a3bb6c1acc36ff3c8fb
BLAKE2b-256 396ea9a0a63594b938e46fe3638fc5f7f04500a76a542b2fd93e4cd32b95b76f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-win32.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-win32.whl
Algorithm Hash digest
SHA256 9621de942431150ccfc847cd71a07b96f52ba2c072764e615cef4cb733bb5f4d
MD5 45a13e3e8cd950d9fd93ccfa68f5bc7a
BLAKE2b-256 ed6388491132d1061c75f9dfde65ea78b1f870080f33245de015089c7103fb00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 27.2 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a29031ff95150ea6156607394db8f79dfb06d5287f46ff07e3f60b9df76121c
MD5 22f5837a940d27d6d37506203667a0c8
BLAKE2b-256 77872bf74c8b371046ec1f9cae2cf8596eb4ab9bd07008eacfb72262b2fe362b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3a67fe9309f21c8b793f36bf15602dcd20163e11165776b3b355e520a7a2ed21
MD5 9ddda7de966a9b2698bce62d6a71562a
BLAKE2b-256 bd7eabf67efa6e6f6a82de000fe5fada355982deb0c6375f2ef4def74493c59f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 26.5 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 520768350eadf59cb7a037eb1734bb65605e4bb7466fc57fe6357354e208b61d
MD5 171a7232cfc03776a32a43dbe8c63920
BLAKE2b-256 0d98b938617f03f72589588aab50bcf15202558c76c2d5c0f36d439b3cf468a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 26.4 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 08dbb7a164a335d04684973223a41b47bdc2f8828045dff5aa79d004961b24cf
MD5 2d05d2a9d2538c0e3a4641b67fd6a698
BLAKE2b-256 d227aa65e65e3e9246348b1ea609b4ae9849de1f26554e87b21453d835dfece1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d44bfd6519bedbf10bd7a4558bd281a8a5f5b72d2bb35fd831dee55cd63fc800
MD5 e81d3611a94fb7adc59de2b59496703f
BLAKE2b-256 8dd74d0ba015b0d0128eb0acf1ffcd7df5f56bea75169deff133409adf39be78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 27.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc28cb55c2b3c80a26ea374a172fec70b0561ada211e6fb23936ccea3ecb80b2
MD5 01c7f42705e9912287f0135ab7bd97ec
BLAKE2b-256 d2366b62fe9085ae9b6d6d293223b25bec1db02de15a764418b73b8d22b0321d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 26.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53d83ca316a67d7442302220006ccdb4ea0e0cabaeccd9eb28430d7b62603add
MD5 a8136d7bf0424d03aebf977c0f1c2bcc
BLAKE2b-256 23cc1f8e15493b3a6bf6a05db96d500cb74e42083a9ea89214b82ccfbb7d52b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 27.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2aff328164d7e8fbcf6b82182cc16f7a729ec7edfce77b4d0c2908fca12bd63
MD5 971f702c26e7fbecb729878aff186e5d
BLAKE2b-256 94b13445ccd7707487d009f6e3c132e817334453edfdb6b854e600058182175d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 26.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d9d922cfef27757156f1023eb057abab192e3e9f5436ba60eac57ffbc2b5c23
MD5 dd8d59ffa204183f0a20f9d5fe02bdca
BLAKE2b-256 dc93877b080f8ab91cfb2df41ee73dc680b0aedae1b571eb9d4571145571bb18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 988133c7f44c6c64f6fef482483014995260cdb3a68270805256ddb9e6fed9e8
MD5 fdf8ab5900c1d812d1df1b328b383399
BLAKE2b-256 c89d44821ceeebb2db125f970f7482197270552e60041be2e3cb33d349b0b712

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7c41e83a2811c22e04ae50d0986932318ba82e6f9e29f0fca727d855df6bd959
MD5 ac0a6f8e5061f9986b8620c36b76eb3e
BLAKE2b-256 733641e480e1b6cbafe581db36ec3d9edb75d4e582618d2e39e1d7cf1c4f8e82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea5f0d4fe452dc3daf915c714504eb2f1e570f8ebac752abf51f9e6f58a1ff68
MD5 ed502269888c5ca6e3913fd5bd6d273b
BLAKE2b-256 fd9655feea9127cfa50ecf177335d36c5e083407aa3c2608df7bb23ea0ddcd27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42adb04aaa0912ddafa059e641c057cafee0de0b57f6156909a00e28791c7e45
MD5 c8ec13f305b75d7471aa1ef0c79be141
BLAKE2b-256 b8be8faf2c0f4b0580acd3a70d5381d5a7a8924c345d7bee678cd51e56954ccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b39151a5873a2f0a03ff9d03eb351ad5cda14973af40da8d80e4c7c2d6369f0
MD5 3afaf232e56d57abd43c1f70d840e86c
BLAKE2b-256 86e33d3df31e725baccb5ca3957f196d887baf35cd5b75cba06a96b0a0cf0d17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.30-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 26.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.30-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 fbda9d6d2921e69b157ec7642f8af478a4ac5c9f088693b3913336adaf51d0f5
MD5 8e3c2aee55d8f07b3e1cda3001737c18
BLAKE2b-256 8341bf9de679da97aa733c55e2a4fe1f770774b8f2600672dcf23e465c0b36fd

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