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

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

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

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.10-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.10-py3-none-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.10-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.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

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

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

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

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.10-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.10-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.10-py3-none-macosx_11_0_arm64.whl (21.7 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.10-py3-none-macosx_10_12_x86_64.whl (23.0 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.10-py3-none-linux_armv6l.whl (23.6 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.10.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.10.tar.gz
Algorithm Hash digest
SHA256 9b3a2ce56c4a22065462473acee0b729140370650974de4e781a5273f49371fa
MD5 045626e994b4dba5ead8b7f60da709d9
BLAKE2b-256 6b8705605a6c303736a4db98d25efcf4466b99d0c416a567ab0b4f6cf5f74bb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 cb13c696fccd6e44e25bcf5d3b8b1661d963ae4ef8fbdead4cef17fdbb580aa7
MD5 f7fa2ac7e9f41983df5f4b04448f8861
BLAKE2b-256 eff2e0c8b4127b7473f5c76f77eee35c660b4df819a887eb50ae785740f88e65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 97172796ae0cdc9a83f429f24860029d2707cef65c213d0dd7e9a9284ad20b7b
MD5 ab7ede23b9f2fc188f4d900ad420f6f7
BLAKE2b-256 12e041fbd5d50201801b68f024f70ee66c82bfa0515aed9523dcb579a1bc01e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-win32.whl
Algorithm Hash digest
SHA256 5d383301c876e02afb90b53d8cce36ce4aa3dcc9289625a93dd8925446157dc2
MD5 8a33e1185c9dd6fc4d651bf62c699a10
BLAKE2b-256 22f9c29a05960df10c7770c88fd784a09b830cb0703244e8844dbea7ecacf472

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d3892056347d3e2b7734df2fb194568599cc4b1bce36a99ade75c8458e4d1d0
MD5 20acf0c31356e4574d49a2fa5005eda5
BLAKE2b-256 6a8b589231473d479b5e98b04b5cf64de4f1fe17f26e593a9a3e75e81aa96aad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e51b9239056bbf7e4b4bd5ceaee51d0632ba79cca23889ea7235c1bbea5aeb23
MD5 4d4c319d3b9bb49ced8a056de10e0e85
BLAKE2b-256 ec0c2f5c5993cf5ca587ce4ddf2c6a532575d4031d5f209ca35ce15606f830c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 deca9575ac2e8584e64250020352dcba0a2ed458ec949321e54d3d67a20a9c2c
MD5 804c2bf35e41417bd6278755adb28fd8
BLAKE2b-256 4f3c48ae3bcd6157c38110924a1462b7a41b6b3bb54a5174c57a950b3bcbd401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 0100bac6d5b1d7f133cf9def4b6ee51cef9098e04ff0b0ecb5ea19921b37c9af
MD5 08e5ff2d0cd6f4ea0a1c8fc0afbd830c
BLAKE2b-256 342603510e70a4458ea62a9193e82330bc1c10b3d378f27de62eb29fd7ae3e71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 700ef6a0504ea98592b7bebd1196ad2f4c84be834c913e3cbd4f1411a814b40b
MD5 5cc1673b184bcf9802f346a212f4afee
BLAKE2b-256 3ae445ad4e0f95e178a7124095e3b2ab08edf5ca2977497d1c32ed101814c42a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a16c1fced229b82403411378182e08a86f814a9f15a281e558cf2f0d02fc4c99
MD5 dafdfaaf9e08e5893d586bb3d19d9aa8
BLAKE2b-256 0820f0577dc32606c7c7db73d9df116683ea4aeedcc1f57eebda55ad36134016

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98bfe0ab36eb59f66f2d79fff05da4ce5f19629f62c8590a2f9446eaffdcb15b
MD5 fb10036d209ae0ea14c5ecfe06b426d5
BLAKE2b-256 3dfc4e382b58cad8fa201ec020dd0c647f867af3088a9a6450920b8fa48ed0ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82c19288fbb1b5ad37565a8e242a7ee282478f8e67c0cc33a552d32a695af338
MD5 fdce43540a890baa4140878c0b04c042
BLAKE2b-256 8ae258f3ef1a18aebd2becd93b5036750b01647dc425818f77011a5ddd01606c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58eeaf2ed00beebe4d6a277bd7373ed8d0da651e98b6b481c127463123486f99
MD5 e83a2f84c1f9ce8715b3242718201c5b
BLAKE2b-256 ab27b4e071b10dc934e39af15bee5ba7fc0e72ab29fa53beb068b84617cba902

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc5e49567513edd729e41a2ab57d2add3e5770b25b9c946b3ac80ea79d86cad5
MD5 74422d5d1566979f188b39f884c0fc82
BLAKE2b-256 fa5e3b64a98cd7b5f0f3d2ba2c7fadb20a9ca06f1369aace5bff62e22344d78f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1f6e5149f89b66458f1f7674c452c8bb02c3a7c0ef3a2b1852cebe9ac044fbd0
MD5 75baf5c9fbaa0f71a13685a1f606f434
BLAKE2b-256 53276960b4855cab4297dd4aa0ccabf0b950e046c04be0b3171de383025db562

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 12ace874453eb3a80af4684f72719751127443be75d1422e4a068a5758142f1b
MD5 a8f71f337475e83393b8895c91538e0e
BLAKE2b-256 5b5ef750dcde6598ed5afeb267e5122a5328feba0bd8745f8a6130f9dc9500a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-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.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adaae647da800b6ffe8a3d5a9c098704228dd001834f7e113107e5fd02b56df6
MD5 edefce2c952bbc9eda1e18e38d3384bd
BLAKE2b-256 ed9f846c8eb8b5ddd4e1dd6193ef8f1450d83d869bb3aac8b0249d3a5a709fa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f61d75508075576ebfd8c17dc96e63276a5d8f7f2c5a969e8fe529d9685816b
MD5 5ed66886c3892e67ee4b1c063a104e3a
BLAKE2b-256 707f22152a46b2ea9bcd9532ea3efa8a6a28488fe162f1bf3cc1f55c003efad8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.10-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","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.10-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 136dfcc1d1e95749880ffc07deca7ff9f88bce0f81df5cc437238950483747ed
MD5 8f57bc2c38215b258c6d8badd77c15ee
BLAKE2b-256 f126a1659dfd05d4206a2e5ae8ce2ba215762901f9424f2e5b5a317ea84c84b4

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