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

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.4-py3-none-musllinux_1_1_x86_64.whl (24.8 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.4-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (24.0 MB view details)

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

uv-0.11.4-py3-none-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

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

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.4-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.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.2 MB view details)

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

uv-0.11.4-py3-none-macosx_11_0_arm64.whl (21.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

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

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.4-py3-none-linux_armv6l.whl (23.5 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.4.tar.gz
  • Upload date:
  • Size: 4.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4.tar.gz
Algorithm Hash digest
SHA256 9ce347f5113252198603d646b68968703b01f9a7bfe3ddb02f0c8969a4fbd2cd
MD5 1be0c71e6e48ebfb363b586a81147a7b
BLAKE2b-256 578aea3e0edd9b8a9a66291ef9039c085c6c332bccf6aeb74a4a385bdf67338d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 7f43da80450997499211752c5e7b58d9f12355214820a87f698b146330c661b4
MD5 1a948b81a7a6785baedcedd363b93257
BLAKE2b-256 7e60ecaac7c7d5e4fca4fe7578a548508d238210a2073915aeb9db21ed78bba5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2a5273967f6534ad6343ba0404e453c5fd4048de93b4a198f41dcf8e990fdd1
MD5 1d2c6d4b7bb7470dbeb1682e0e580e57
BLAKE2b-256 9b9eda99ca9b1daa1b4bf95c0b74348bb9bee3469294fb5f6022fb4fe035a8e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-win32.whl
Algorithm Hash digest
SHA256 ac6e213b3b0a12e9e034b6c8915bcb2c78154eeab79c301c84f338d5ee9cb85c
MD5 454e2142344e7cb50f4e4869adbd5923
BLAKE2b-256 86b1a3a3d7383915f83479b81cc5575f740e11b5518b58f220ae3062b302adc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbcbaf51366e644a3b88f8f35b32cb456a0946177ed065641f0080e506d4abd8
MD5 b2d8425fdb7a79a69a104709673a9297
BLAKE2b-256 d3ebdc149085afbe67dcad0e807451a3f0bb55ba50dee1514d1a1a8bd28b2336

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8ac7752ee9ba5039ebb1dc92ed02117e7c37ec9342057207e338e775535b4ae7
MD5 26e311056fa98feb63e17579215eb606
BLAKE2b-256 abddc42e73450abf6459dc89cf9e71f9208b251463b56dc698fa0b8c20305669

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 dd38c221e3c312d25fddeeca4d4cb496638ed8408b7ca4cff7dd3f62038ac23a
MD5 b0785cb0b731508de950f03dcf4a2120
BLAKE2b-256 b55bad27341a056f02159d35645ad4381df5a5fbabf8504674354024fb5d5539

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 43a9cae718fa30d4f09bf9cf9fe77f426796d319ec00d340d8dc89a1e0cbec25
MD5 ba527b850c0fc45587ffc815b3430913
BLAKE2b-256 7ac68888d247ffe724c946d7161304ebf13eae96b95cdc16879f7a4e342c8ec2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23bc14dff7c12fab97656361ccc07049c9ca2cfb0968d17978f34d70b8ab0b01
MD5 4aeb2e2c42b28fb5046de0f16a1601ec
BLAKE2b-256 0034a17f0031068cd00503a9d55460db1dcc877a47f2ef720107e38eb6f8b7b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a599dd5f563da775ca9ab9385a3d9b14f02de3c85c7ce7b41ec27996f03b137c
MD5 278c4cf506b0a7a321c72fba87f79bf4
BLAKE2b-256 45f19c211df705e5414c631f836e45c6f98c4dc8ef6b9f4f704971483f08bb1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9082654bdab10f1f1ebecceb471b033fbe1936f3efd8650bfe547ab9ba942bd
MD5 f98ecec590b5ce2a84fa05540a0ae19b
BLAKE2b-256 4fd14d14f12387986c92ef8471fb29f5010e25918ca699fddcc40155ec44c12b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81456f4628508e043aed6fbb6e0b459199542e42b139c6cdc206216139302857
MD5 a55f9cf86ca092fc55133fb9f9c6f015
BLAKE2b-256 93e5e3c5cc364d0d47cb731c0bcba8d3692b5e0ff8731b57f260579a22d253fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cfeed646be60b36df9608f891845052b04dba645a0d7eadb310558f604ae02f
MD5 439dbcce797e7b4fba641b32eff89bd6
BLAKE2b-256 cb6517e33cc90823732665d621111808ad016e61ea6454662b9ad12a8cf1c9c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d691a61ea20b7865b401e6f637190e89ae9186837c992b5926801252f8133b90
MD5 60b8ad3c964ef87b737969749ae66769
BLAKE2b-256 8745a6623a1e29eab8b021a403e31229cf7725f556befee871bb5b272ad1b391

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 13818d990b6227e38fa2928bf33b409e832d9f123a538a1c93e91f52616d2efa
MD5 6761adc4b858be56da68065bcea2b44f
BLAKE2b-256 772cb355ad980bc1aaacb3c72f490f74e82dcf4d18a5b7e23c9b79f286c75329

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5220b3ccbbd87da9be16d8b2dfdc946e0b0380005cc81371ccb03680f3dc7676
MD5 0f5502c79f06ffdc1f305f1b8cd3c8ef
BLAKE2b-256 40d7d9cc4682aead4b8eafd180123ffe97499c38dfe124c0968d3f7a779e7dc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b18e0c5731ff92ea71edb62ec31f5e223f121ba94a954a1869f18d3f138c2585
MD5 a5fbde3a2931dbb4be91c7d03e09964d
BLAKE2b-256 ee6624bf7b3e5a5bb7d1c7e2bab9fd68a727a6a3f59dd21e22c248b89944bb8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-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.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a00c61cfc77cea82c65ece08a7e57bdde7e228c6f24cb9f7b1ea3ad1fc5393b
MD5 eb6431c8f7e772a6ecd40a3ae0f91a07
BLAKE2b-256 1234cf558a688b7e1688c41c478502c30decdea10bec7f82e2ff073c6fca5913

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.4-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","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.4-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 04d3ee3ad928ad36f007b0746d91f697719b89f8f48cda77a3fc589b56fb4c77
MD5 8b0a7f06710ef9060be3ece27ede4d62
BLAKE2b-256 35c4ca0f6b210dfdab13f3741852009170a2e4e704f14668fc1272b6f4c56f01

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