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.10.tar.gz (3.7 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.10-py3-none-win_arm64.whl (19.8 MB view details)

Uploaded Python 3Windows ARM64

uv-0.9.10-py3-none-win_amd64.whl (21.4 MB view details)

Uploaded Python 3Windows x86-64

uv-0.9.10-py3-none-win32.whl (19.3 MB view details)

Uploaded Python 3Windows x86

uv-0.9.10-py3-none-musllinux_1_1_x86_64.whl (21.6 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.9.10-py3-none-musllinux_1_1_i686.whl (20.5 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.9.10-py3-none-musllinux_1_1_armv7l.whl (20.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ ARMv7l

uv-0.9.10-py3-none-manylinux_2_31_riscv64.whl (21.2 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.9.10-py3-none-manylinux_2_28_aarch64.whl (20.1 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.9.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (21.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.9.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (22.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.9.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (22.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

uv-0.9.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (21.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.9.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (20.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (20.0 MB view details)

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

uv-0.9.10-py3-none-macosx_11_0_arm64.whl (18.2 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.9.10-py3-none-macosx_10_12_x86_64.whl (19.6 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.9.10-py3-none-linux_armv6l.whl (20.5 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.9.10.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10.tar.gz
Algorithm Hash digest
SHA256 84128ca76a665fe0584bff6ef913741d5615a4187c1aaed81739d519e669cfbd
MD5 c7685859a7d3c2b6ce5e522e97a79621
BLAKE2b-256 c74218d158032c594110e7dab012931a3cd6a09f4dec801854dc877a3c6e865a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-win_arm64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 d4903e73f5e281ce5c3def60014bef93d2d1a148901653e222470ce54987f4a1
MD5 37d16217969618a4883f373c8855733c
BLAKE2b-256 6c9db38be12b524dbd28dcdc99cfd88f6f3f792823258b96efb6d691025872cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-win_amd64.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ee9027eb98cf5a99d9a3d5ddab7048745e2e49d572869044f66772e17f57792
MD5 14a06a910959477d64b0b5d9e661b5d9
BLAKE2b-256 43c372dbdf10ea0e70ca47248aaa25122df9dfa7a7e85e96ba6031cafc67cb02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-win32.whl
  • Upload date:
  • Size: 19.3 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-win32.whl
Algorithm Hash digest
SHA256 dfcc3cd5765158e82a0f52066462e378887aac01b347b588907fe3290af92356
MD5 344b632d4d113a3e848a9f82d06f88e0
BLAKE2b-256 b1f9ea01841fe2660add4b8fbc2b3a34e8d4f812d9bdaeeeead5470e1142b4be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4e256d3cc542f73435b27a3d0bf2a6b0f9d2dd6dd5c8df1a8028834deb896819
MD5 33db64f2bfbf2eb5c7a9e37d895c92f1
BLAKE2b-256 789fc16fb7e0290744a22987ffb9700c69fe1e459e199e04f3e881ce05d032e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 20.5 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 780a7af4a7dfb0894a8d367b5c3a48f926480f465a34aa4a8633d6e4f521e517
MD5 06aaed7d5837f32d08fe2a2f8ef401bb
BLAKE2b-256 f1da4e51d384669103a9ba8ede1ecf1c99c932148bdb365794ac586f90e5296f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 20.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 516d1c5549912696ba68376d2652661ed327199a9ec15763f7baa29bc75b35ec
MD5 cdcee5510a68cf62ab6795fce502c379
BLAKE2b-256 43f5deb8be34797f71ae72f690da26b388682cc478bda630822fff7bc90e80f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 21.2 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b0a0c4594871de9e8b12c9e10982dc83e2414b712a34e84860fac9fbc8510c5a
MD5 182d864cbb363664d500418edace190a
BLAKE2b-256 d5b50919100138d2cdb2f4f058a0e7c6fc059aad1914b1f6637c7fcfe2e670d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 20.1 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 110fd2062dccc4825f96cef0007f6bbb6f5da117af50415bed6f6dcd5e1e3603
MD5 c6a0fb3370adbc39a733b4204b2d2496
BLAKE2b-256 354481df7494107d8473a754fea74e51c8727192a71c11fc4c92aa901e36a255

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21981bc859802c94d4b8f026b8734d39e8146baac703f1e3eab2e2d87d65ca8c
MD5 87186bb0fb4f0d458820563c692d01f4
BLAKE2b-256 a20c4b705b613237519e8640baaa1fe4809ddef2482ad7b82ea807c71e5ddb5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 21.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92d4b58ef810eaf5edf95c607d613ff240ab903ee599af1d687f891ab64b4129
MD5 be6dac3345235effd90977376f6b3cc6
BLAKE2b-256 8022b4c766d855aaefd3797c6e296af4b006d560b78cec5f3041902cd6d7abce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 22.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c133e34feca0823d952a1d323d1d47f2b35e13154de5ca293d188f5b8792a62
MD5 714aa282ec5ed239065a20ef45b99ca5
BLAKE2b-256 7d5c658647132d2c2396bd484b9ee42ab9a0a3f439a14b59e91c48b66b6b7403

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 5e7a86eb5edbb9064b1401522eb10c5bd25ff56c04cd0ed253d0cd088a448bef
MD5 ccd49a9317693cdf9e92673e33aeab21
BLAKE2b-256 64f87aab6deb6362431edd670c2885d802ced2cb045fd4f73df462c9c8b05f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 21.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 763cf33c7c5ab490323fab667b24f66412c3c3ca58e86b56e13fc0109d031a1b
MD5 ccdc26f0db8aaf328c7461b04b61bd98
BLAKE2b-256 c54b3b136c1effa53ab84bc72f66cbc3aca0013fad6581d9c03c2989635b3be1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 20.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55ecddf19314f7da5b8dea6bcfcc86f5769dd7d22106c731e8e6cfbf3fa6b98d
MD5 600ed4aaf682380ed282e6ee294a2b40
BLAKE2b-256 459da8930ce9f5247629335de32dd97f19b955f86fb7524ea268f17181c3bccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 20.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9a326f04b670f1af2d9fa90e50af57a9a872a8dc90bb377d0c27b2030438ffc
MD5 a2d7329c91492431747824dc5f434b51
BLAKE2b-256 356b4c074cab3bf483a172bec905e1696269b0222d73fd8dc890388da8b110c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c8969d54c9f603107445a23f36fba03a0dfa4c75b3ada2faf94ed371f26f3a4
MD5 3f3f3241e856680831800cc45650bf74
BLAKE2b-256 b7e85b5b5a719830ee5505bddf35082f6dc41569dab8fb6761626e5034c27748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 19.6 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c2ddc0bca2e4b7e31623a17d60ea5f8d1ee4ff3ee27ddbf884e089e57cd0c93
MD5 a0163cc96a7325170222cdf03bc279a5
BLAKE2b-256 2767763da49b0dfafb5465376e29e176f56c3f1ca79a38ef59983fe5d62dd371

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.10-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 20.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"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.10-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 a02b27e00afe0d7908fbb9ec61ad5338508e02356138a8a718af239fe773dd2e
MD5 09e1c9ad7f691ae168a43cd4131d9e55
BLAKE2b-256 1dd268f07f3b96539b986d36a6f2b03f9f8484373f7d8f05949221be1a1f9993

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