VOOZH about

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

โ‡ฑ uv ยท PyPI


Skip to main content

uv 0.11.25

pip install uv

Latest release

Released:

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

Navigation

Unverified details

These details have not been verified by PyPI
Project links
Meta

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

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

$ uvpipcompilerequirements.in\
--universal\
--output-filerequirements.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:

$ uvpipsyncrequirements.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

Unverified details

These details have not been verified by PyPI
Project links
Meta

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

Uploaded Python 3Windows ARM64

uv-0.11.25-py3-none-win_amd64.whl (26.9 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.25-py3-none-win32.whl (23.9 MB view details)

Uploaded Python 3Windows x86

uv-0.11.25-py3-none-musllinux_1_1_x86_64.whl (26.5 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.25-py3-none-musllinux_1_1_i686.whl (25.3 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.25-py3-none-manylinux_2_31_riscv64.whl (25.8 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.25-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (25.7 MB view details)

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

uv-0.11.25-py3-none-manylinux_2_28_aarch64.whl (25.1 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.25-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.25-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (27.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.25-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (26.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.25-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (24.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.25-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (24.7 MB view details)

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

uv-0.11.25-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (24.9 MB view details)

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

uv-0.11.25-py3-none-macosx_11_0_arm64.whl (22.9 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.25-py3-none-macosx_10_12_x86_64.whl (24.1 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.25-py3-none-linux_armv6l.whl (25.2 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.25.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25.tar.gz
Algorithm Hash digest
SHA256 458e731778e7b5cc870710397859c23e766703e7bc0695f23b3eb15080745ba6
MD5 b923d12212446cbf82b9cd5972c6affb
BLAKE2b-256 4b8e2777bf40df3c634f2a522baaa2995d2bd5901461fc5d8730c04c39fa6c75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-win_arm64.whl
  • Upload date:
  • Size: 25.2 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 79f166cd1b84f855e9d2768221d59b403869648289fd884d58ad4299edfb4d9e
MD5 0bce6689ee75b4e7ccd55f299d5a70b4
BLAKE2b-256 85cbd7bb121261db0b829f38b1e86b80d8103afd050b8a5c5c9fe4a988d2f1fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-win_amd64.whl
  • Upload date:
  • Size: 26.9 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 560b0fbaa6356af533923a349658c21d4f410d16e835787d8a05da451d4ee859
MD5 67650d61b0983ebee8db858fd0b783d4
BLAKE2b-256 6466784f9fb457b640dbb96cdd175f4902235b42ffe740dbaee9ea5fc649d8b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-win32.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-win32.whl
Algorithm Hash digest
SHA256 86d4759fec9b46f61944d6e9ef1f5eaa2c5fbe2db5ddb59492d9174b08fcf39c
MD5 f8adb90d441dd505e9f4746466a5e609
BLAKE2b-256 f68b4146a55d3ee6b2b67c3dece3ef6be220c443abafc2dc56baa2f74d6b36a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 26.5 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41b37e724f41eb4c3794bbdd82ddeebb4b5850d4ada8cccb2906ef9e5aa0f83b
MD5 6d6bcc8b408adb617ef2c671a2733aac
BLAKE2b-256 704816ff9dbe5f308cb547e227971cbcaf3c905797da12a4116b620e2acc09cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fbff70ae9fa4da9fb6823ae4fdaf77a65c9520e13b6d1d0241ba56e4b121b7aa
MD5 7d997873845248ce793818498bc0822b
BLAKE2b-256 c2fd28c990fd18330aa01383bae738be113f4ac5d9d414f92790947326c6781c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 25.8 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2c1cfe97dce56c997dfa3214bdb8955b7b34cceea7505520185e22ad99c0eb6b
MD5 f31d8e753993271c8d8c6e395a2793f0
BLAKE2b-256 d37db835ed56eab281054efbfbcbbe1249621908c6e4c721a878904cbed2f418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 25.7 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 f42de9e7d63a28a4fe76a522077813656de38b5acda20b4db63857d260c1ff13
MD5 5a219b1d1fd4152432d41da8e9ea4560
BLAKE2b-256 c67daece221faba22804d8b4f913903358dc2d45193babf2a44a49f79eadd25b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57fbd47e924242fd347d0c209d95711d8ea61db8d8780962d0f30ccde2c854a3
MD5 0f16571605b90edb8a22b9376ceef966
BLAKE2b-256 f9c4f8b3b6b1bb48a452d98c02909e229f7ae317300618d6dc334c883742339e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 26.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2bc05e17ae3e1f232abf93e7dcfb3b68702dfcde34a00c29cbce7e07d1ecbfb
MD5 037e38eb9a75da7a4caa4c63fd644227
BLAKE2b-256 9101f5a01fd777ce501cc59eb71775f3bbacac258a65a64939f07804c2279c98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 850ba0018ff170c3a9baaf9b5fe8b23393b6b77ee4ea6b2e2315fdb8d7c388f7
MD5 d87df1e601e5599170b5bc10122f44df
BLAKE2b-256 1790bbfa0653e992877e5ea78ab3186fb6a5a122ebef5913b6809ef6d06fcf9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 27.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3febca65ec5bc336ddaf7e4f724704f2c894c16839723df14865ee00b4acf38d
MD5 b23dd48a5beac0b057cfa14ae986b502
BLAKE2b-256 e2e8bb8ab595a27035b565cedd5d601ae2b85cf6aba6f68cd6a97eae88dd7250

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 26.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61ef11d9967a38109e6e8e3d20d1f743fa08033c32bce274d6ccd9a9abb5d305
MD5 a5e58e516ede63ccd5a748d1f83a7eb9
BLAKE2b-256 442ba7beea057778f092daa5aeda7aeb3f8bfa78f4a0622245adb449fdbb3d20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69d14ffd0a4b050f8a70f64aacb09b8dfdfb1cb30a6351fb17b48f273f95c58c
MD5 c41d764e7525a5f4edf18327cf3b91bd
BLAKE2b-256 912a70ef2f2a212d89d23f90e1c8017c080fae93bec21cd9f14795498a6e6f89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b180b12237b4e04692491fc6796584a9a8bdf4c7332bd2a769caf096b97885d0
MD5 934bf13e10436635246346e9219846fc
BLAKE2b-256 dfd4862a534ab4aae28ad2c9145ea5af3021eefe225e4e1c983278bb34b53b9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e3480640983e0b8e509eeb67882837e620bdd820f8776948a5f13ebbb4481d04
MD5 b0e4e1c049c7c530bff2655192045237
BLAKE2b-256 eec17cbb3f6b4a021ce7c1c453d1412d3b4b68d7d7585d15d91a57e9ab0a317e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7a78fc8d0c5e764e9fa39c99066db47a0bc465b023feed90812e3c0a6b5eb0d
MD5 3444474a7dd4d40fe8e56d1f3eb04c42
BLAKE2b-256 abfd9f72373e340c6abcd3eb9257d69b442434b65e90e1f7f53f333abdac11b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 610650cbaa0a9b18015da39d2c28d736d287a5a124e49296d8fdef5e4022e980
MD5 fe793aed5c95e9d8c973fb9b9a14bc09
BLAKE2b-256 9c97d60eabb616db232ed0e682c55d858d0980175a92336429c4e0ee82a160e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.25-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 25.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","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.25-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 d6f965a79fc7539a12139ce981caa0cbf7d9d3bd4ea3daadaf174ab4d7fb6e42
MD5 6640ea1f868d7b33017c1aeecdcaf756
BLAKE2b-256 8da7dc836daca0db76178cfe4e40ee95fa2c5f96a3d7b3cda0bdde5291aef8b8

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