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

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.21-py3-none-musllinux_1_1_x86_64.whl (25.3 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.21-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.21-py3-none-manylinux_2_28_aarch64.whl (23.8 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

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

Uploaded Python 3manylinux: glibc 2.17+ s390x

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

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

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

Uploaded Python 3manylinux: glibc 2.17+ i686

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

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.21-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.21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.7 MB view details)

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

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

Uploaded Python 3macOS 11.0+ ARM64

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

Uploaded Python 3macOS 10.12+ x86-64

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.21.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","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.21.tar.gz
Algorithm Hash digest
SHA256 083882c73373a16de4c136d54e3386a52388dead5048a07505e25578b157182f
MD5 911aeffae67cf0e010ac961e45fa0ed8
BLAKE2b-256 f3f9f45bb1c251962ee614afd58ccd3dc06ada7869d04987efc2858a81cc4e0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 f64a851e429e6afb96f3a0b688995757ed3697bf1078509e2da8220ffc9805cd
MD5 95062f0fa898368084ad5831744c606f
BLAKE2b-256 5aef8b1d92f9501963ef8694bb17ad80ba9926d049240d2da0a4f879aa37f3e2

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-win32.whl
Algorithm Hash digest
SHA256 a00c78f3eea6db7967d98a505b01b7d80354517c7ff34f51701949f39c7b53e6
MD5 15b6324356c8145a3c0e893ed43f9ef4
BLAKE2b-256 f83c81979463de0278facaa59ed3940b9c62f25a68d737d1a6f11cc3f922fba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88668a27959df9188ff72b0314f6b14f6acf6090964bb0748974239183ecb51c
MD5 9326954c0ca918335ab5d6139f6e460b
BLAKE2b-256 8421210a5562a6a0eddfbe4890eb48e67f167be0307e75f029ca46b8f6386e5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b756dd2b368d7cc4aeb48249d06e1250bfcf81f0313ff7d7ec2ccafcd3ee4c93
MD5 af32c0a8219fa3b4dd974017d76834d5
BLAKE2b-256 f653c61711e81f9f8d34dd020340ace968499b2539d3bb4ac09d39339df54a9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 05e2f2e0fbf7c423f8287011ba0d2d69464f26a5f13b33df05cd491fbe5a910a
MD5 04ec3cd213bcff9c911635a407295099
BLAKE2b-256 662cd4db24f9aeab8fce106633cd0388df4c0cf9f0991a2b5d9f58d061a031f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 0e7916874f125a6f6af4cddd95f892ef19a4bb65c146afea7e544b0f98c63d02
MD5 c51f9fa55239f9ef8d6aac4ce3baebec
BLAKE2b-256 6a1a5c8993f95d4384baeaf00b96df0111af3c941a34e4466cde0d52b0b6ad99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ed98ff3165bf7b339692d0df918b87e6d36eb0bed5183466330d27d5730d57b
MD5 e2e0dec261fa4a179759f33be5445b3b
BLAKE2b-256 61b5b92538042d78550626ec7ac98b525bcb81ded8605c7ca9d6e35a1454ba71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9ecdefa81db7e966d1655988cad6f840316228381dd69131ebc4ae9362bbccd
MD5 2ee741bc1df7a499d84d3bd08d7a0613
BLAKE2b-256 de703347f736911b73df1f31c0823d6502891f3c49fdeb157fe8060b18c08d1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 525ef0eb56ff982357a321eca953307d824ab6f58473630c69521e8085f12b0a
MD5 bf045ea4ddae0048c7f1aba543b33318
BLAKE2b-256 1c7b51d53d9fb1aaf38a613c2d20b40583ee2aa47fc000724a00aecbd5e61431

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66906cfa7c29c2cf4ea5117cf5614b0b83078ff669e664e2187071fcb24c85c1
MD5 2fba7c1fd3b3654905b39fbb6ced73e5
BLAKE2b-256 beb989b4e3909111c14311d4a1551afb37f0669587dc1f4ae7e26ec5baea6c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4530761c565f3a519a68f36628ee51f2b467b66573e2023e9073641219b60d23
MD5 f4231752f50b84bd1512178620c31fbf
BLAKE2b-256 96c5b34d3cdf05a069c583ef368e6db90242f842d7eb26b246981b3ca8799c27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af08e0d8f43da43bc68930aee56ca5f38ccfbc79d45b6e8a7d5051f1e975684f
MD5 bae70bceccec953be6fb20cfb4194bcc
BLAKE2b-256 8cd4cfa1ea36706c32006dea9bf0a819b56c22af8270ea3a2b57562ce96c2d45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 870f48082df673016f465b068f40ad5aa7d2d3cfbcfb4e73724630684003a2ab
MD5 42c057c2a3a3ae2422469ff578310183
BLAKE2b-256 13ac46132335772fcdc38e5b5ec76701a8df8e3707605909b5fed46783689501

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 00193e4e077c27ee3d66da356744dbf0b3aa59356dfbd9a9efb1dc8469af8ad7
MD5 00221943adb8c3331530005691e2ffd3
BLAKE2b-256 3c04c5503fc1015095db71c280526f45537f3bb06855ce281ff1761b85d149bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c11169a049ec8bf9ddc6a9f55fba9a240942ec8005faaaf4393f00ff7a4c16e
MD5 3488b939b9a0bac2d8da41fd26d99acd
BLAKE2b-256 a5f731d62c17837c9ae79cc6d5351fc5d54e8926e78b0315b4b6c187e0d1d50d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.21-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.20 {"installer":{"name":"uv","version":"0.11.20","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.21-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88d8283f6ea9f0cdbb7717e6e08e916c32a8b8b7e11c72fcc6426a4c4eeb89e0
MD5 f95d0d8af21e3767d124a45fa3a6c6e7
BLAKE2b-256 9b8c66d22f9152a014fbb17b1308394efe274e860b8beb4933f051396f96dd9f

See more details on using hashes here.

File details

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

File metadata

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

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