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.26.tar.gz (4.3 MB view details)

Uploaded Source

Built Distributions

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

uv-0.11.26-py3-none-win_arm64.whl (25.2 MB view details)

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.26-py3-none-musllinux_1_1_x86_64.whl (26.6 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.26-py3-none-musllinux_1_1_i686.whl (25.4 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.26-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.26-py3-none-manylinux_2_28_aarch64.whl (25.1 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.26-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.26-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

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

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.26-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (26.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

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

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.26-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.26-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.26-py3-none-macosx_11_0_arm64.whl (22.9 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.26-py3-none-macosx_10_12_x86_64.whl (24.2 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.26.tar.gz
  • Upload date:
  • Size: 4.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.26.tar.gz
Algorithm Hash digest
SHA256 2a433ece2ace088dd572d8abb0e6bd9a4ecb0e10bc9856447bbb37545f384f29
MD5 47b471036b6f66ef105d5d8d1d563f30
BLAKE2b-256 d0cb5efc713948ddb10b00abfb51bfd429221c720175557f9c7965fea2448fe4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 7e69d1569afbb936e7bf4e4ab2f72d606405f4a68f380f088a0b2233e84e056a
MD5 9d86bbdf0ea707134ed1df6b979e43ef
BLAKE2b-256 211dea66b12813878797126e2b3aca124b1c9c5ef53120702d1c00172f90a21d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 d95567e9470dc48ff03265f420c3c6973f6437f18a79d5e00b6eb4b2d9379907
MD5 5f46c28741e81bd4e34f2efde94db960
BLAKE2b-256 d0139c588226d5b478328d739e654944430719f3ffe8999d6a24d425ec9664ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-win32.whl
Algorithm Hash digest
SHA256 79e5c1b3410047e1962290c3b7b8f512d2c1bb95200c60b016f7729287cf34c0
MD5 d93449cab3b0c8b489e31c7801e0bf11
BLAKE2b-256 d694380dad6c2bbe12417025aacd12cfc08322ed4c9dd8f760bff7035b86f22d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 26.6 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c28822517d03aebbe9549aaaecc88ad580e4b2b6a927abffe5774a74d6ba09f6
MD5 66847de86dafcddc94ed87c902c29e7c
BLAKE2b-256 8de746881ff9164aa2e7c649901837d58eee3c57beb3b0fcc0fea6a4e40cf8f3

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 edd0c12b75141a6d830d138a91e366ad66e630f1c1dcaf83b8325b80cbacfcbb
MD5 3f2045d4b86a7d11f41a9e6c365a5ef4
BLAKE2b-256 1a69ea77209a224a23a399cb7f6414f77ef032bd9e083e01199a0ebebf0d3ff2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 22f6d62e794b252ff3a1e2dfe5010cc76208f90b2c906e54971a0223ad6f16bc
MD5 87eea74a5c7400c53046002b087bca1b
BLAKE2b-256 f2c2e772b7e6c8a835e8bf6739a391cdfc8e8e244c5c496d9b40625068b59ff4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 866ae8d28f7381c15de0906a284c1e97916424c635bf40f7960b3fc889cd725e
MD5 ab8177301db5d298de73066f293b1e4f
BLAKE2b-256 a751e4e43e106fb8cdc026b97491ea4600f4194a9c4da0b4e4e30c2a7dceb268

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dcf4e0b5b5cbdc242dcb002f1f8d99e7cf8c043609869228a9ce15e095c0b18
MD5 e33b595fdb1f8f326bc2bacd5ea2afb3
BLAKE2b-256 d300478c3a870dcac690b8c337ee950a60a952e817f574945e85155c3cc0ab34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efdddfcc9b1b790c5f7985c5c183c851682ced165b44ffa914f4947f5cad1fbf
MD5 b793ac655f848b39e83fa9e0d15e374d
BLAKE2b-256 72c285d8e762ad83b0f14fae2255b0578c4fd7dc915746f81b64ed786342627a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9052bf27c7ee426901f35a48715fa9288ce631c1878b91c9a6c950288f4b8633
MD5 2db9d6fa9919ebeb93a2a8f510e96c49
BLAKE2b-256 dbe6647fe5fdc888a3d27f79977877ce4e88052fe9be5398371e51bb134fc262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 120ab2de93164d08cf5950f7fe18cbebe3ff670865ae41a292452bab2346477f
MD5 c2e8c1715aa97d66c1952139f62c57c2
BLAKE2b-256 88d2a8a422e54c08cf4b8d51bedb9dbdd3cc233aa290ad8b3ee0438c0c02a3a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efcbe0e187846f5ddba23bcaed17e4f9cd2463da5c45bdb5869616f686d713ff
MD5 74bcf73f67411d9a00154fcc38c4b9f1
BLAKE2b-256 81f81601e2acc7c54963814b4831eab996d8599e690712722c5acec5114860be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e4f4c3268e69ac96f01972274a62f5f930c03cbc680adba6f21e63237ba3a639
MD5 9be2c5e1c208a715793b17640f66d54f
BLAKE2b-256 7d5e273425e58a8812423e3d1f6c5da1015e636fbf13a83d104317ca37e16304

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1cd9ba4951681ce17f1703106266fcbe27aaa7d37f07d53cce8b5686d68a8755
MD5 386f05fa8a5232a49bb40dff13f6521e
BLAKE2b-256 bffd71fa021f6909c4139d8354bea623b5e0ef0ce4a08da250da1a1645528da2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-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.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b6d078d2ce83897884c2330c0676f27be4bf3d223fb2a409460f579fb5f0a98
MD5 92a53d47eb3679c578aca9a67acb89e0
BLAKE2b-256 7b5ecf7b94ed3b1932c2a62573dcd388ad6c1da5c52111cd71ab7f20faa4a0aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.26-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.26-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a58a06e5a4b0035538d3ab4160ad74c716076ea7148eb3317171c6276ac020b4
MD5 909df53cfce35cc3921a517d8900bdd4
BLAKE2b-256 ec80525b73c8188e7052343e7109466a08fcd5195055aff4b0346ce3622e48cb

See more details on using hashes here.

File details

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

File metadata

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

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