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

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.11-py3-none-musllinux_1_1_x86_64.whl (24.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.11-py3-none-manylinux_2_31_riscv64.whl (24.2 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

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

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

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

Uploaded Python 3manylinux: glibc 2.28+ ARM64

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

Uploaded Python 3manylinux: glibc 2.17+ x86-64

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

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (24.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (23.1 MB view details)

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

uv-0.11.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.3 MB view details)

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

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

Uploaded Python 3macOS 11.0+ ARM64

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

Uploaded Python 3macOS 10.12+ x86-64

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.11.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11.tar.gz
Algorithm Hash digest
SHA256 2ba46a912a1775957c579a1a42c8c8b480418502326b72427b1cad972c8f659f
MD5 a3023010b9d6a7d541f39bbe065243e0
BLAKE2b-256 ba0269a3b06fd8a91f95b79e95e14f5ccdd4df0f124c381aefe9d1e2784d5a65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 011f42faf5d267a6681ea77e3f236f275cb4490efeecb9599de74dc7ad7df8f6
MD5 222c5d3dd338025a75b40eb0208601c1
BLAKE2b-256 2d3ef3ba2557b437ec5b1fde1e0d5248b723432dc90f09b0050f52695596fd2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.2 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 36412b13f6287304789abdf40122d268cee548fce3573e07d148a29370181421
MD5 1b30bc746262bda2f487878e562ee161
BLAKE2b-256 305fdb34b840f8d86833ef810de8150fc9ce01a03c779393e08eadbcc4c010d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-win32.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-win32.whl
Algorithm Hash digest
SHA256 c1e0e3e18cc94680642eac3c3f19f2635c17dd058edcb41b78cbdc459f574eb4
MD5 ec98a7744af6e92b937a6bb676e46b0d
BLAKE2b-256 633a997cddf82917f084d486e1c268c7e94836190fd928c93aa3fb92caee9a7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 505a31f2c30fa9e83b1853cab06c5b92e66341c914c6f20f3878903aa09a6f34
MD5 19760f76db45c5bb708a51ada74192de
BLAKE2b-256 5648434a1cf4798ca200e0dcb36411ba38013edb6d3e1aeb4cd85e8a2d7db9ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 29ddb0d9b24a30ff4360b94e3cb704e82cd5fda86dc224032251f33ab5ceb79e
MD5 c7fbeb7d040936b8ced5f9b83b671e21
BLAKE2b-256 719cbb306f9964870847f02a931d1fff896726f8bafcf9ce917122ac1bfef14c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f68dc7b62050a26ac6b1491398aebbbf0fa5485627e73b1d626666a097dbab07
MD5 a91b5f943bc4f4072c76b54b661a4b3a
BLAKE2b-256 9dbe9181158465719e875a6995c10af24e00cdefba3fe6c9c8cbb02d34b2ade7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 3f8c9a1bea743a3fe39e956455686f4d0dd25ef58e8d70dc11a45381fd7c50e5
MD5 c66dc10481848b33d66724066ccf5ba6
BLAKE2b-256 9fcdef1f573ee8edd2beab9fcd2449121483829621b3b57f7ba3f35c56ef373b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e8faf2e5b3517155fd18e509b19b21135247d43b7fb9a8d61a44a53118d5ab7
MD5 1b7c05a9aa4b2bbc025eef5b450b1b6d
BLAKE2b-256 eed5f3be167a43192062f1409fd6b857a612665d331174293b4ffc73218872e1

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f69f4df007c7506db8d7f77ccabd466a886ac21e9b04a479dd0cd22e26d2262
MD5 78b427467afade76257bab971ae93b3d
BLAKE2b-256 e8fcefdb16e1a6c619b021259ac8d8e4b6afd97efb446054ea28761eb2e1a177

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c86bd6460579857d7e359bdbfe6f688076c654481ae933151d1449f9ea672fb6
MD5 1996d707b215d2e02259cc542c49763b
BLAKE2b-256 b14246e7e35f1f39e39d4bf0f712479768cf8d33eb7f35b67fceaea43e975dfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb3f2715551d2fc9ef44b6cf0918fcc556cd99e9bf6caa1d8a870a4657d2b180
MD5 bac6c8dc24483220d82703c76bac2487
BLAKE2b-256 86f70741abcd70591a65f85fc4e8fecd3fb3fb4bdfe50042cccf016714955fd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0632af539d6a1ee00f58da9e7db32fd99e12187aa67426cb90d871154ab5debb
MD5 b300c19a0de6227eeb3ae00052c46cff
BLAKE2b-256 ca44ebd02ca8fae5961d1bcbcee11019dd170dd0d42517afad753281335700cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 05ee9f18701692fcb22db98085c041a3be7a35b88c710dea4487c293f42a4b95
MD5 18250f4e8c00ea3fa999fc4345ae7039
BLAKE2b-256 8fc2cff1f9ab7eda3d863e9866fca0e14df37c0fd734b66ebb77d751258b2fae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d227bb53b701e533f0aa074dd145a6fa31492dc7d6d57a6e72a700b9a4a1991
MD5 f818cddd7ba55fa18590f6486009f50a
BLAKE2b-256 93a6c129878d7c2a66ffdaa12dc253d3135c5e10fc5b5e15812791e188c6dbec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-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.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eec6ad051e6e5d922cd547b9f7b09a7f821597ae01900a6f01b0a01317e5fd0
MD5 5d8e4e958b445ad76076bb251d4baa21
BLAKE2b-256 fa37f64decba47d7afaace3f238aa4a416dca947bd0a1a9b534c3a0f179e1016

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-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.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92817f276758e41b4160fcb6d457ebd9f228f0473efe3808891164f326fdea38
MD5 21992b467efc9285d5cf222790beeed4
BLAKE2b-256 dec9d2d7ca30abf4c2d5ae0d9360a1e154115af176308ef1ecdc8bf7af724cf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.11-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","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.11-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 4977a1193e5dc9c2934b9f97d6cf787382f80deae17646640ee583cfc61486c0
MD5 ee00ebb9f7df3c3476ad42d4cb81fdf6
BLAKE2b-256 6c5439d3c58de992767834120fe3735b85cc60dd00a69b377c3d947ca6f172a1

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