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.

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

$ 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.10 3.11 3.12
Searching for Python versions matching: Python 3.10
Searching for Python versions matching: Python 3.11
Searching for Python versions matching: Python 3.12
Installed 3 versions in 3.42s
 + cpython-3.10.14-macos-aarch64-none
 + cpython-3.11.9-macos-aarch64-none
 + cpython-3.12.4-macos-aarch64-none

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 docs/requirements.in \
   --universal \
   --output-file docs/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 docs/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.

Platform support

See uv's platform support document.

Versioning policy

See uv's versioning policy document.

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.

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.12.tar.gz (3.8 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.9.12-py3-none-win_arm64.whl (20.1 MB view details)

Uploaded Python 3Windows ARM64

uv-0.9.12-py3-none-win_amd64.whl (21.7 MB view details)

Uploaded Python 3Windows x86-64

uv-0.9.12-py3-none-win32.whl (19.6 MB view details)

Uploaded Python 3Windows x86

uv-0.9.12-py3-none-musllinux_1_1_x86_64.whl (21.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.9.12-py3-none-musllinux_1_1_i686.whl (20.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.9.12-py3-none-musllinux_1_1_armv7l.whl (20.4 MB view details)

Uploaded Python 3musllinux: musl 1.1+ ARMv7l

uv-0.9.12-py3-none-manylinux_2_31_riscv64.whl (21.5 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.9.12-py3-none-manylinux_2_28_aarch64.whl (20.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.9.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (21.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.9.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.9.12-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (23.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

uv-0.9.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (21.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.9.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (20.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (20.3 MB view details)

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

uv-0.9.12-py3-none-macosx_11_0_arm64.whl (18.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.9.12-py3-none-macosx_10_12_x86_64.whl (20.0 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.9.12-py3-none-linux_armv6l.whl (20.8 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.9.12.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12.tar.gz
Algorithm Hash digest
SHA256 bf19eebee9a01612accd5dfe8bc81f198fa0be46c192a33ff5bcd7b36bae4c9f
MD5 fefd0ce9d1f12c966fd21cf0e1ffa97d
BLAKE2b-256 1b1f87b5eb5e7107625e9ba407845e8c3bb2853008dd9d52c9082028ce7a0421

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-win_arm64.whl
  • Upload date:
  • Size: 20.1 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 6d29dd5800d7d27323afa05c34b9566369370e23d232da22973913c7104873f4
MD5 3fa41ff2fb738abbe065a4b2e8ae7191
BLAKE2b-256 ff5cfe197b1f216942eb5212159e7c875a0ef40153dc4e11afdebe9619bd094a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-win_amd64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5018f1f2c8315139b49f28e98c1aeab98a5dd4e1ba5ecfee98b0d8746110c91
MD5 25396a898a2e13f939f1827b7a7dc735
BLAKE2b-256 c3bea7fb5352d6d7a35ac7f55b1bb3a60a2c539ed4c1b6c885c8e30cd3d54a65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-win32.whl
  • Upload date:
  • Size: 19.6 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-win32.whl
Algorithm Hash digest
SHA256 bd845ec24cf163be2e4a02ff7e8f49b2e909c89b25b563e0195c46a0461f1ee0
MD5 aaf3a519cde331e91a7bf6b9149d4839
BLAKE2b-256 643d9959916840c9006bd6fd8ef6f5dbb254bc5afc79d546f192af7bb5d73f96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 928c18128259283beaaa24f2cfe3fbb22a3d26cbbf6ac81a6333bdf3edf112e0
MD5 8a4e1cf04eb54a92441a56d4df1ccadc
BLAKE2b-256 f0b55c3ba66f491cd7a8ff3a86d82f7286bd268ab08cf1c024e2cdf0f1b52151

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 20.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6dc8455d2e705e9bfd8e81dc0c11e7427639df5ef284ec6e6a381813fef6de6d
MD5 4be91f71401ef9df8b1b88d772a95629
BLAKE2b-256 a1757ac909dc244eb48e7fb7cbb5c43cc11ffb702062d083c5494c969556d574

See more details on using hashes here.

File details

Details for the file uv-0.9.12-py3-none-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: uv-0.9.12-py3-none-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c6b98f7fe5cbee23dcd113aba0ca6396448d9ce4fdffc5ced2a784b72ca237a1
MD5 e06bba6c98172a377e24ae4711f2dda1
BLAKE2b-256 d5e5cd61640adb038cdece208f44732df0b8c5668b21dc2a5b45ea12d5a237b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 21.5 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 de1d90bddb5ca4e79dedf9160c5c24069cc101a7ed939346c46e882b9497acfa
MD5 70b2e83f3f5c0caff5624b220dd2d385
BLAKE2b-256 00a6948099fd1706e6434b2a502ae33f7b82acf12668f116b9778ac7d15e6d20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4164d8bec004e12702ba26472e342f34d4a3086d114a9dac39a8c3986e0dc20d
MD5 c7812e897e220e75fd85431f20c5a3f0
BLAKE2b-256 dc476b49ee2c0ea5108f39eaf9ac5a27c11e52a4e895c39ee52ec95ecedf63c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 822ea5a36e261f94a71c458ee79a8837d0a00d0b9b185a8f68fc0a9d452b1582
MD5 e45842bc6f725841698cb7e961e7f364
BLAKE2b-256 5f4cf82603979cc94dec109c85f46a53597882c8e7de70518542d795adc829e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19d835bf91d385c1ae46844c61e7888a56d07585ed5cb13edee1858f2fff093a
MD5 a2fc22d258fd9d0c68d6982db528c426
BLAKE2b-256 43d7bc95b83ab7e378cb9f87b5ff82b465f11869cb2c5ede329a43e8574e678c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 22.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5330ed2c8843e4acfb94c6ef6852f44672ec61bb32240f63129d1b226653847c
MD5 d2994f404b5b7f4898490e6541297e57
BLAKE2b-256 1246fb84d5f488385acc23d7f16e0c03e430de92180982223fed9a32d26d3245

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 e7dec90ca8318f3412bac4b3310259f9436d5f2f9448fb1191331b0a122333da
MD5 67cdf65bcfb03db03d885f3e65c6ba5a
BLAKE2b-256 bbbbb13df87ee43b549736976152fc28689dfcb7f5c28625831b1b596847290b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a409152450f941ed625f836bc5a668092d79198983d501d7e5ecd199d62da9df
MD5 731a6969cb38bef9e0d44638fe5b9b7e
BLAKE2b-256 7c9b2ea3dedae920cdb31399ca46a369b40d994ee6863cad7f2090acc6e317c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81d0b364fe08ed58adf822a9d57c5a3c8f638b73e7860f5eeb8d35a8c0d6acf8
MD5 6678b50f383926272ecd69c35a35da05
BLAKE2b-256 bbaf808c6c685b79496d01bf00495653a99e06f3f56b1300fd4c1e73733b70bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 20.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c57c27b9bff5f1f3a11a643aa7e6b9c37b278b625fa7276777d265fb41bf58c7
MD5 11b676eb22aab10d910b5e06f056c1ab
BLAKE2b-256 a52c3e1bcea769ceaa75957f1e6de73ce0b6e3419baab02655e65d922ef9de43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d24ccf747ece6570f5d19626fa786727884332872048ba01e3ced94b88cfc6a3
MD5 18a3026faed3c9cc43cf39533e557585
BLAKE2b-256 afd7d409a604ecae95e765375a054b703458b468e301baf5ea73b3417b0c41bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d821e59e29f67eb46fc4c499778db90d755ca1903b07fb4474485b338d20e11
MD5 ccf9481e21fd20a97fa06a4ce3255ce9
BLAKE2b-256 53d0e584af6a8e26fdd83678b8fb0b6c543a2ef7c735be4ade3ef742c54bfdd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.12-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 20.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"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.12-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 a3415f04c32ddc090d0774e7ff50017e97471f126bbb5fd11a65c91abf2d8163
MD5 10c7af31024bd7d3c2cd991ec9c86283
BLAKE2b-256 06c7c8bf6a552eda1d47e3431851d0ca766812a9a0c1ca2379cd146dc43b5cbe

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