VOOZH about

URL: https://pypi.org/project/uv/0.9.29/

โ‡ฑ uv ยท PyPI


Skip to main content

uv 0.9.29

pip install uv==0.9.29

Newer version available (0.11.25)

Released:

An extremely fast Python package and project manager, written in Rust.

Navigation

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-LsSfhttps://astral.sh/uv/install.sh|sh
# On Windows.
powershell-ExecutionPolicyByPass-c"irm https://astral.sh/uv/install.ps1 | iex"

Or, from PyPI:

# With pip.
pipinstalluv
# Or pipx.
pipxinstalluv

If installed via the standalone installer, uv can update itself to the latest version:

uvselfupdate

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:

$ uvinitexample
Initialized project `example` at `/home/user/example`

$ cdexample

$ uvaddruff
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

$ uvrunruffcheck
All checks passed!

$ uvlock
Resolved 2 packages in 0.33ms

$ uvsync
Resolved 2 packages in 0.70ms
Audited 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

$ uvadd--scriptexample.pyrequests
Updated `example.py`

Then, run the script in an isolated virtual environment:

$ uvrunexample.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):

$ uvxpycowsay'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:

$ uvtoolinstallruff
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:

$ uvpythoninstall3.123.133.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:

$ uvvenv--python3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

$ uvrun--pythonpypy@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:

$ uvpythonpin3.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:

$ uvpipcompiledocs/requirements.in\
--universal\
--output-filedocs/requirements.txt
Resolved 43 packages in 12ms

Create a virtual environment:

$ uvvenv
Using Python 3.12.3
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

Install the locked requirements:

$ uvpipsyncdocs/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.9.29.tar.gz (3.8 MB view details)

Uploaded Source

Built Distributions

Filter files by name, interpreter, ABI, and platform.

If you're not sure about the file name format, learn more about wheel file names.

Copy a direct link to the current filters

uv-0.9.29-py3-none-win_arm64.whl (21.9 MB view details)

Uploaded Python 3Windows ARM64

uv-0.9.29-py3-none-win_amd64.whl (23.5 MB view details)

Uploaded Python 3Windows x86-64

uv-0.9.29-py3-none-win32.whl (20.9 MB view details)

Uploaded Python 3Windows x86

uv-0.9.29-py3-none-musllinux_1_1_x86_64.whl (23.0 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.9.29-py3-none-musllinux_1_1_i686.whl (22.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.9.29-py3-none-manylinux_2_31_riscv64.whl (22.4 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.9.29-py3-none-manylinux_2_28_aarch64.whl (21.7 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.9.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.9.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.9.29-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (24.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

uv-0.9.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (22.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.9.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (21.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7lmusllinux: musl 1.1+ ARMv7l

uv-0.9.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (21.6 MB view details)

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

uv-0.9.29-py3-none-macosx_11_0_arm64.whl (19.8 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.9.29-py3-none-macosx_10_12_x86_64.whl (21.0 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.9.29-py3-none-linux_armv6l.whl (22.0 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.9.29.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29.tar.gz
Algorithm Hash digest
SHA256 140422df01de34dc335bd29827ae6aec6ecb2b92c2ee8ed6bc6dbeee50ac2f4e
MD5 4a02627d0caac10329d68898c7e7cbc9
BLAKE2b-256 97718a5bf591f3d9674e0a9144567d2e0a16fd04a33b4ab8ecfc902f1551c709

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-win_arm64.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 22ab5e68d2d6a283a0a290e9b4a3ce53fef55f6ae197a5f6a58b7f4c605f21c8
MD5 1615746cdb38034cd133d8299cb11339
BLAKE2b-256 ad2a0d4a615f36d53a7cf1992351c395b17367783cface5afa5976db4c96675d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-win_amd64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 b823c17132b851bf452e38f68e5dd39de9b433c39e2cd3aec2a1734b1594c295
MD5 25cf7c5661c1ceaaa89aeb6d934684fc
BLAKE2b-256 780a450bd74385c4da3d83639946eaf39ca5bbcb69e73a0433d3bcc65af096d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-win32.whl
  • Upload date:
  • Size: 20.9 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-win32.whl
Algorithm Hash digest
SHA256 fcb17d9576598f536a04139beefd82187e84db3e6d11a16fa5507f5d3d414f28
MD5 0fe02dc0b9b5c7e6e0c82f7c4b07639d
BLAKE2b-256 8004155263d673c980da9b513673d9a61bb8a5a98547c8e42af3613881ca54e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 367cb2a7ab2138b796caf5b402e343ef47f93329ae5d08a05d7bcfeca51b19e7
MD5 a84e88d7417038e241bc42b9b45dbd33
BLAKE2b-256 9165fe381859f237a5d2b271bc69215ebc5b87cbfd156ad901927921ef82b2e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 22.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 52a6934cbbb3dd339c24e8de1cdd0d3239b82ce5e65289e0b13055009abf2bc1
MD5 8671d3e2851a52f379528f48fe0af573
BLAKE2b-256 411daf83aeebb75062c8539ffdeaa7474ff3c7acb6263d6d7ead28219c71f5d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 22.4 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 4095f5763c69d75f324d81e799d90c682f63f4789f7b8ad4297484262ecdeffd
MD5 02da6b96beb95b66811feb87342af223
BLAKE2b-256 3e058a3b8a190b5ffb9b0d07d10f6f962e29e0f5aa4209415e78bf0514e2394a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aaf650ddf20a6029a59c136eaeade720655c07bfbbd4e7867cc9b6167b0abae9
MD5 1c3ba91725fe02da55a230acd70dec70
BLAKE2b-256 a22f8a2e4ad9a8024ceb10c04a9c386220d53107e6f3bff7a246fe36622b5342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae09db1bbdad5c38c508876a5903a322951539146f14c7567448bdcdea67e1fe
MD5 15ba0fe84f558eb372cfee20df66c169
BLAKE2b-256 7bfae725329efb484997fd60018d62f931901f3d25a04b95278845c1ad25b00d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d36fe3f9de3a37f7d712ee51ebf42d97df7a00ec901b02b6306c7ebbab8c6a76
MD5 6b7cfc405d236d1d6e97b790f7a6d2f8
BLAKE2b-256 8df56158eaf6558962ca6a7c17ecbe14a2434166d5a0dae9712aca16b8520f46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 113cbe21a39fa2cfbe146333141561e015a67dfaec7d12415c7ec6ff9f878754
MD5 761ef14ece5be1c66cb4e3c940fa9b13
BLAKE2b-256 5eef9a82a1bf3c5d23dd4ecf3c8778fc8ffc241e671fef519e3e7722884e93ba

See more details on using hashes here.

File details

Details for the file uv-0.9.29-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 5c99fd20ae5a98066c03e06a8f4c5a68e71acf8029d1ab7eba682f7166696b52
MD5 7f91e2639909f7fb74fc712d3c88a02e
BLAKE2b-256 8c414d4df6dd7e88bea33557c3b6fd36e054e057cf8dfd64b8e97b4f40c8d170

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14a6c27f7c61ca1dc9c6edf53d39e9f289531873c8488ed24bd15e49353a485c
MD5 b0eb81cb5abf17d23820090ee3bcff6e
BLAKE2b-256 ecd94db58a2f5d311a0549d1f0855e1f650364265e743709ef81824cf86c7ae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d227644f94c66abf82eb51f33cb03a3e2e50f00d502438bc2f0bae1f4ae0e5a5
MD5 695b93fa05f4060fe956ce8a1187ca6e
BLAKE2b-256 e53f7c14c282b3d258a274d382c0e03b13fafac99483590476ceb01ca54e2b9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ca5effa2b227a989f341197248551be00919d3dbd13e9d03fabd1af26a9f9d41
MD5 4724e56f616ecadbe4c6c150dcf82a04
BLAKE2b-256 04da0c5cfd9d0296c78968fb588ca5a018a6b0e0132bdf3b0fca712cd0ffa938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4f118141a84862b96f4a4f2bf5e2436f65a8b572706861e0d4585f4bc87fdac0
MD5 c7126d73e4857bfec7460e6eb8427ef0
BLAKE2b-256 ef098e06484d3f1713170926b356913deb0cf25f14ba6c77d765afdbac33e07c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11aad2d15a9e78551f656886ce604810f872fa2452127216f8ff5d75febae26e
MD5 02f290155d7c399285333c5fedb2f7d6
BLAKE2b-256 55e80489cb87d25a9b06ec3b867fecfd32a9a054dcef8c889662c153d20bba3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 21.0 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66a5f5c5ecf62f32b8d71383760a422aa9a2a2798cbb6424fb25ccfa8fd53a81
MD5 35cdcb5ca41594997239464f96440385
BLAKE2b-256 8b8292b539e445c75706cbc8b9ac00291ee2923602e68109d73dffa9ab412257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.29-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","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.9.29-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 54fc0056a8f41b43e41c4c677632f751842f5d94b91dea4d547086448a8325eb
MD5 5c844beedb3250ffe2b57f4bf12fb202
BLAKE2b-256 8335a8d744a2866d176a16c02ead8d277e0b02ae587a68c89cb2b5b9b8bcf602

See more details on using hashes here.

Supported by

๐Ÿ‘ Image
AWS Cloud computing and Security Sponsor ๐Ÿ‘ Image
Datadog Monitoring ๐Ÿ‘ Image
Depot Continuous Integration ๐Ÿ‘ Image
Fastly CDN ๐Ÿ‘ Image
Google Download Analytics ๐Ÿ‘ Image
Pingdom Monitoring ๐Ÿ‘ Image
Sentry Error logging ๐Ÿ‘ Image
StatusPage Status page