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

Uploaded Python 3Windows ARM64

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

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

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

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

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

Uploaded Python 3musllinux: musl 1.1+ ARMv7l

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

Uploaded Python 3manylinux: glibc 2.31+ riscv64

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

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.13-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.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (21.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

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

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

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

Uploaded Python 3manylinux: glibc 2.17+ ppc64

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

Uploaded Python 3manylinux: glibc 2.17+ i686

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

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.13-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.13-py3-none-macosx_11_0_arm64.whl (18.4 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

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

Uploaded Python 3macOS 10.12+ x86-64

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.9.13.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13.tar.gz
Algorithm Hash digest
SHA256 105a6f4ff91480425d1b61917e89ac5635b8e58a79267e2be103338ab448ccd6
MD5 9fefe459511c7ccefde9aa72361e8abb
BLAKE2b-256 f210ad3dc22d0cabe7c335a1d7fc079ceda73236c0984da8d8446de3d2d30c9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-py3-none-win_arm64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 edfc3d53b6adefae766a67672e533d7282431f0deb2570186d1c3dd0d0e3c0a3
MD5 5f106ba95371d786174c61b8f79420d3
BLAKE2b-256 9f31142457b7c9d5edcdd8d4853c740c397ec83e3688b69d0ef55da60f7ab5b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 5732cd0fe09365fa5ad2c0a2d0c007bb152a2aa3c48e79f570eec13fc235d59d
MD5 ce7fc83684f2efc043a83ce2b1c12d74
BLAKE2b-256 2fe0718b433acf811388e309936524be5786b8e0cc8ff23128f9cc29a34c075b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-win32.whl
Algorithm Hash digest
SHA256 a80296b1feb61bac36aee23ea79be33cd9aa545236d0780fbffaac113a17a090
MD5 f24c57b77f5621a7637210ea13df97cf
BLAKE2b-256 010500c90367db0c81379c9d2b1fb458a09a0704ecd89821c071cb0d8a917752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d50cea327b994786866b2d12c073097b9c8d883d42f0c0408b2d968492f571a4
MD5 5a6c5c68e7950e1512273b539940781f
BLAKE2b-256 6e8870102f374cfbbb284c6fe385e35978bff25a70b8e6afa871886af8963595

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f254cb60576a3ae17f8824381f0554120b46e2d31a1c06fc61432c55d976892d
MD5 08e858e18033f119b4c056f307e15100
BLAKE2b-256 8c83d83eeee9cea21b9a9e053d4a2ec752a3b872e22116851317da04681cc27e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3a4c16906e78f148c295a2e4f2414b843326a0f48ae68f7742149fd2d5dafbf7
MD5 0787643d62cb3fc8867793d689009b9b
BLAKE2b-256 32b69231365ab2495107a9e23aa36bb5400a4b697baaa0e5367f009072e88752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2e00a4f8404000e86074d7d2fe5734078126a65aefed1e9a39f10c390c4c15dc
MD5 b6444ad109fa1ff9ddda25a6fd9befde
BLAKE2b-256 81ade3bb28d175f22edf1779a81b76910e842dcde012859556b28e9f4b630f26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6cca7671efacf6e2950eb86273ecce4a9a3f8bfa6ac04e8a17be9499bb3bb882
MD5 9b6759b35c75527d350e7c281caca673
BLAKE2b-256 ebd8a77587e4608af6efc5a72d3a937573eb5d08052550a3f248821b50898626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6627d0abbaf58f9ff6e07e3f8522d65421230969aa2d7b10421339f0cb30dec4
MD5 03457b63d377cfc1a41c799ac449c7ed
BLAKE2b-256 dae5148ab5edb339f5833d04f0bcb8380a53e8b19bd5f091ae67222ed188b393

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fe5ac5b0a98a876da8f4c08e03217589a89ea96883cfdc9c4b397bf381ef7b9
MD5 245f113f9b89241ce01f22cd9fbae462
BLAKE2b-256 390f5c9de65279480b1922c51aae409bbfa1d90ff108f8b81688022499f2c3e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05eb7e941c54666e8c52519a79ff46d15b5206967645652d3dfb2901fd982493
MD5 d74e0e2e0eacc0be9d002f7902f2b3fd
BLAKE2b-256 e4bccef461a47cddeb99c2a3b31f3946d38cbca7923b0f2fb6666756ba63a84a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 a66817a416c1c79303fd5e40c319ed9c8e59b46fb04cf3eac4447e95b9ec8763
MD5 0f42b966a755638272e6afb78b4bfb6d
BLAKE2b-256 0804d0fc5fb25e3f90740913b1c028e1556515e4e1fea91e1f58e7c18c1712a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48fa9cf568c481c150f957a2f9285d1c3ad2c1d50c904b03bcebd5c9669c5668
MD5 46b5cd86238505165ffd118aefee2ce1
BLAKE2b-256 ffc018a14dbaedfd2492de5cca50b46a238d5199e9f0291f027f63a03f2ebdd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e797ae9d283ee129f33157d84742607547939ca243d7a8c17710dc857a7808bd
MD5 0ca3c6c0318f12232c5fc65038c6685c
BLAKE2b-256 8a49045bbfe264fc1add3e238e0e11dec62725c931946dbcda3780d15ca3591b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6a641ed7bcc8d317d22a7cb1ad0dfa41078c8e392f6f9248b11451abff0ccf50
MD5 2383baf093a6eb8fad8adecfbd5a6a64
BLAKE2b-256 36eef9db8cb69d584b8326b3e0e60e5a639469cdebac76e7f4ff5ba7c2c6fe6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.4 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 318d0b9a39fa26f95a428a551d44cbefdfd58178954a831669248a42f39d3c75
MD5 88c7b2f3df8d66ea527a02782bc51dc0
BLAKE2b-256 a3d10f0c8dc2125709a8e072b73e5e89da9f016d492ca88b909b23b3006c2b51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-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.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d4c624bb2b81f885b7182d99ebdd5c2842219d2ac355626a4a2b6c1e3e6f8c1
MD5 d7c461bcb0c8695238aea0f796f13688
BLAKE2b-256 8a535eb0eb0ca7ed41c10447d6c859b4d81efc5b76de14d01fd900af7d7bd1be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.13-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 20.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.12 {"installer":{"name":"uv","version":"0.9.12"},"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.13-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 7be41bdeb82c246f8ef1421cf4d1dd6ab3e5f46e4235eb22c8f5bf095debc069
MD5 4175f0d4a4829755f74ef1d53ce1f674
BLAKE2b-256 6aae94ec7111b006bc7212bf727907a35510a37928c15302ecc3757cfd7d6d7f

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