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.20.tar.gz (4.2 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.20-py3-none-win_arm64.whl (23.7 MB view details)

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.20-py3-none-musllinux_1_1_x86_64.whl (25.2 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.20-py3-none-musllinux_1_1_i686.whl (23.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.20-py3-none-manylinux_2_31_riscv64.whl (24.4 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.20-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.20-py3-none-manylinux_2_28_aarch64.whl (23.7 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.20-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.20-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

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

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.20-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (24.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

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

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

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

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.20-py3-none-macosx_10_12_x86_64.whl (22.9 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.20.tar.gz
  • Upload date:
  • Size: 4.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20.tar.gz
Algorithm Hash digest
SHA256 a246f30931cbc93d0a39d0cfc75be045fddd45773a734ddf8afa869aabc46c63
MD5 8412d839d41311bd0ef35c32a28bc373
BLAKE2b-256 8009c29c0b90bc9308cfa6f5d77ce9b38ce97852210fda17d79019c7bcf9c3a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 442ae26f47bf6e58b072e99dbfd6d5296ab90308574b2c02adff1dace051008d
MD5 37f61c2a47801d7875a371031168abfc
BLAKE2b-256 8b8d00a382c2f8f44b328cf98f734a3fcd72957698c30bed2392bd241b573384

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 4836044213bb23a3be1f5550db340d3a19babe1dfc3ca1313544e8b614085ce9
MD5 488cd8ee64055b56fef598e624d84200
BLAKE2b-256 6635c9ee48cdce11f5cdac9e2be41a5446bae7382cde18d2ce1050bcd81dc05a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-win32.whl
Algorithm Hash digest
SHA256 32893ee9f94657fbf89e22638ac88850db4529d454f102bfa7ceea5fc9fe8d77
MD5 07f31a8f51cfc1984cefdfcae38922e9
BLAKE2b-256 b47d62af57509c7007600ce11cd5222b2cb84d5cd8f80f427a499d1b44ef3601

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 25.2 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 37ca61eddb940d1c698fce46d63789adfda3033344dabab0e18e2958e1a69771
MD5 c7f6b6c217a43b2c185b8c63d909be14
BLAKE2b-256 53ab11b07641f8387177889f4341a36318561208c18703837bc47163244aa11b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 daa41b97386699212b2266a80c178140c5396e3c444ff5553f68f79812334e41
MD5 77aa9691269af597453fe248660334b2
BLAKE2b-256 e5e6b87c941b93b61dceaa11f4f8d02760de7aa7d1c58ea24a2298e7c5aafb4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.4 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 efefbd491ba443b326fdd344d7efc89c1de8a006cab5bc639a4d5ce9d1dd1ab9
MD5 35298807ee83251c4a4a33b4e0f58757
BLAKE2b-256 0f90d308bd88c7a53cae93f7fe13ce5c621895b8fb94e37911660a3de7283b67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 bb5839cbb68d7469925fe1599dacd16cefdb7698a7adeaf9c8e4d8a7cd4122bf
MD5 76e6d1e3eb0e9d12d4a8a44a3be21a84
BLAKE2b-256 80ff92bce88101ce61d708e888db6ab7f5ebf4ccd61f54d3316e7e48a4be56a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d307d47b1a0cf8f76aa69bde850be407bca9482c13cff066142e586a5c57e77
MD5 9cc601ead6113376af9b1b99b62e69cc
BLAKE2b-256 ab7db0e28abfa41c424d2a3df83be2b00b2fbe3ad5795baf7361262c6d800a62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61588768f04a24b0b4d87b43f03b4521ba66d5eec3ab1aca37cb59b1d52337db
MD5 4ef628e0ce64cf8feaef1e67693e7d24
BLAKE2b-256 7e38f844d125db277d8ce0c921f0219078d292d0ee72d314d0c12f4cf510aa40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cac8ca5d187dc5040b1c22c83f6ed789195c3fc06b6a5a2b32c747c603f07820
MD5 a71df82693a47ee4f5a5f7aa8bcc5532
BLAKE2b-256 a6dee8e205a79b9a39454c5da5c2695e4911a42860a4404739e32802e599af0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73dcaf5543d1b24e4c6fa4c19af033ed015304171c132670ebe9ef01ddec3d17
MD5 00a8369299f013899119e1acef06133e
BLAKE2b-256 ff8c68e4a805e3b49d834e95b3838e53a623d2e0ad956bb44e681ece54b3308b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14026b64ccbe0174e4fcf107f585f5d23f0f5b9f5b3e8b28394fe63fff3e60ff
MD5 6ca383ee56de15cb52e653d2622d9a73
BLAKE2b-256 61cf3a498a315364f906bd655a94fa6b5f74f5240dc90875d6ab67ef28c081ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 edb59d33e602fc462b6ed8fde66d404445294de41ad4de31039f7a2c41153601
MD5 b6438f73af9586937c52fdb5ca13a946
BLAKE2b-256 35a91ce58670a89c25d4a8b84532207183b5a97b3623d9b9151afe641499fbc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3d00754be09a381030829526f7ff47c06d0e28ca90760c4439be48e71c1bf13a
MD5 ade0351978a0161d01168cbb07ccfe1b
BLAKE2b-256 98c37f9f00c7a152e67d59ae5f25635d19ac4252929dd6ac454cdb1dee3119fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8fe143572a1f02d536c4e9c6994f0c89d9fa58ff6e5d91de55f61660658c694b
MD5 fc2a5bf622a5f8aa755bd0359d00adde
BLAKE2b-256 24309031204d7b592d1595322d7506944793728a74795a8c4a3c38bc4a8985f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-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.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9f2062096e146b351fd5da3cd43e15a5c43bfa37166c509d884dab3dbb72f03
MD5 d342627954b804348ccc042481274eca
BLAKE2b-256 393ee3d39361b95c262b43ccfe260f41184da71c536a08f39d4ad59ab962e459

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.20-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","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.20-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3bacc52778775cef671867ddab744b50c4183bc3cd6419a5fb4eb01a02f9526
MD5 b75435a7d01df9d98556eca59d1ddeb8
BLAKE2b-256 027dbbaad5f0c616f7824149a4ac0271db14107b859b36bd75d16db1486c495f

See more details on using hashes here.

File details

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

File metadata

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

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