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

Uploaded Python 3Windows ARM64

uv-0.11.8-py3-none-win_amd64.whl (25.4 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.8-py3-none-win32.whl (22.8 MB view details)

Uploaded Python 3Windows x86

uv-0.11.8-py3-none-musllinux_1_1_x86_64.whl (25.0 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.8-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.8-py3-none-manylinux_2_28_aarch64.whl (23.5 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.8-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.8-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

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

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.8-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.8-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.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.4 MB view details)

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

uv-0.11.8-py3-none-macosx_11_0_arm64.whl (21.7 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.8-py3-none-macosx_10_12_x86_64.whl (23.1 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.8.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8.tar.gz
Algorithm Hash digest
SHA256 bb2cf302b8503629aab6f0090a05551e6f8cfc2d687ca059cad7ec9e11214335
MD5 30df02902d8501eaf5fe56f41390ec94
BLAKE2b-256 c1cd4393fecb083897e956f016d4e66d0b8a496a08fe2e03cbda32a1e91da7ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 a9853456696d579f206135c9dda7227a6ed8311b8a9a0b9b2008c4ae81950efe
MD5 1199d8eb8a00f57a1fe9b18718b26a03
BLAKE2b-256 615ddefa29fe617e6f07d4e514089e9d36fd9f44ede869e597e39ff7d69f6917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 306c624c68d95dd7ea3647675323d72c1abc25f91c3e92ae4cd6f0f11b508726
MD5 4e100b40d30b300abe20febc6277cd2a
BLAKE2b-256 f99ba91a9c60dcae0e1e3da06377d38f32118a523697d461fe41bc9f117ecf59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-win32.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-win32.whl
Algorithm Hash digest
SHA256 e71c1dd23cbb480f3952c3a95b4fd00f96bd618e2a94583fc9388c500af3070d
MD5 bc557cb7480ffcc03530da072c3a4285
BLAKE2b-256 05e83771956dc1c94b8484789bb8070d91872080d0af99332b8bdec7218c2bfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0172b5215544844cd3db0fa3c73a2eb74999b3f00cd2527dde578725076d7b65
MD5 902f6d94ce7715ae56f62adbbc10196f
BLAKE2b-256 4b91b920e35f54f8c6b51f2c639e8170bb80a47a739a1442fea33a479bc93a3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-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.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ad381228b0170ef9646902c7e908d4a10a7ecc3da8139450506cf70c7e7f3e80
MD5 86d4479c5f0f987c90645542744f9f20
BLAKE2b-256 d967fb7dc17cea816a667d1be2632525aa1687566bfafd17bdac561a7a6c9484

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-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.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b3ff2b20c1897105ebe7ed7f9b1b331c7171da029bc1e35970ce31dc086141c1
MD5 fdf07af8637ccf826abc95e6d460356f
BLAKE2b-256 8ae323e4a2bb91e3880e017e6116886e2d0bde14ba6aa95ddc458160ee630e7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-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.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 841ecbb38532698f73b14b49dc5f0c5e756194c7fcf6e5c6b7ed3859200fe91b
MD5 2165411fa5c05a9cb34ff9a836e61c50
BLAKE2b-256 040277430b89e172c20cc549b07a5b1dfda0c882c161b6d82781d3150a7063ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb6a755305eb1e081dfe6a8bc007dbae2d26fe75e551656ca7c9cd08fba21d26
MD5 169915d43978dc2e34e1d7e573e60b7f
BLAKE2b-256 1c9593c7f595f7136fb32807442860c55d0faed2cd3d7da4b7105ed3c2535d5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d97bb2920d6cddc07faa475013461294cc09b77ec8139278416c6e54b938d037
MD5 c80560758d67014767a9a18c590392b2
BLAKE2b-256 5b01df175979018743cc5ba6e2fb9dcec916868271e8d88cf0b9df8fd805a0df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41fbba287efcc9bc9505a60549b3a223220da720eacd03be8c23d9daaafa44f4
MD5 2ae921fcb600b16cccf5be65d2d0f9db
BLAKE2b-256 37164e84cd5131327fe86d4784ebfc8a983149f4e6b811476ef271fc548b29e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91943e77fc962752d4f64ad5739219858395981078051c740b28b52963b366aa
MD5 d89f45357cfc05dab17801dc9edc0f57
BLAKE2b-256 ea4971b7322067c85a3736a22a300072b0566991fe3f95b81bed793508ff5315

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-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.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4421e27e81f85bce3bdb75986c38b5f9bfab9cdccaf3d977cf124b3f0f0b989
MD5 e88366aacc219b7ee4433b76efabe5f3
BLAKE2b-256 a6b36ca95e690b52542caa1dae10ede57732f90c629946ab5f027ff746f87deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3494ad32465f4e02259cfb104d24efe5bb8f7a782351f0354de9385415fb310
MD5 ece426c8e1895ca391789309eb71bca0
BLAKE2b-256 723e5595b265df848a33cd060b10e8f763a46d67521ac9f6c314e8a4ad5329d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-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.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8278144df8d80a83f770c264a5e79ea50791316d2a0dda869e53b3c1174142a8
MD5 5fe6fe3238f7bc7bb1ffc54daa4241d7
BLAKE2b-256 2a6319f46193e49f0c9bf33346a4d726313871864db16e7cdd1c0a63bc112000

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 877c9af3b3955a35ef739e5b2ba79c56dae5c4d50420a7ed908c0901e1c8c807
MD5 cff97daa63b4bc51e5b801e354b2e406
BLAKE2b-256 af4c477f2abe16f9a3d3c73077f15615878a303eef3760115ec946be58ecb9b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-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.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0d402e182ab581e934c159cc9edf25ec6e08d32f29aa797980e949afefc87cd
MD5 ea973a27692efd34b19257f0403df235
BLAKE2b-256 d56282953018801a250e16b091ef4b5e95e939b2f01224363d6fc80f600b7eff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d414fc3795b6f56fb6b1fa359537930924fdfe857750a144d2aedf3077be3f1d
MD5 b235e6b922baa7acb4c7dfddd4ce0817
BLAKE2b-256 8605557aa070fda7b8460bbbe1e867e8e5b80602c5b30ed77d1d94fc5acae518

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.8-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.8-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 a53e704a780a9e78a50f5a880e99a690f84e6fb9e82610903ce26f47c271d74c
MD5 ef29e66d5c99477d3611d72894f77647
BLAKE2b-256 9984dcb676a3e36a3a2b44dc2e4dfea471b8cd709025e27cce3e588b176fd899

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