VOOZH about

URL: https://pypi.org/project/uv/0.10.10/

โ‡ฑ uv ยท PyPI


Skip to main content

uv 0.10.10

pip install uv==0.10.10

Newer version available (0.11.25)

Released:

An extremely fast Python package and project manager, written in Rust.

Navigation

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-LsSfhttps://astral.sh/uv/install.sh|sh
# On Windows.
powershell-ExecutionPolicyByPass-c"irm https://astral.sh/uv/install.ps1 | iex"

Or, from PyPI:

# With pip.
pipinstalluv
# Or pipx.
pipxinstalluv

If installed via the standalone installer, uv can update itself to the latest version:

uvselfupdate

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:

$ uvinitexample
Initialized project `example` at `/home/user/example`

$ cdexample

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

$ uvrunruffcheck
All checks passed!

$ uvlock
Resolved 2 packages in 0.33ms

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

$ uvadd--scriptexample.pyrequests
Updated `example.py`

Then, run the script in an isolated virtual environment:

$ uvrunexample.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):

$ uvxpycowsay'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:

$ uvtoolinstallruff
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:

$ uvpythoninstall3.123.133.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:

$ uvvenv--python3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

$ uvrun--pythonpypy@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:

$ uvpythonpin3.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:

$ uvpipcompilerequirements.in\
--universal\
--output-filerequirements.txt
Resolved 43 packages in 12ms

Create a virtual environment:

$ uvvenv
Using Python 3.12.3
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

Install the locked requirements:

$ uvpipsyncrequirements.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.10.10.tar.gz (4.0 MB view details)

Uploaded Source

Built Distributions

Filter files by name, interpreter, ABI, and platform.

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

Copy a direct link to the current filters

uv-0.10.10-py3-none-win_arm64.whl (22.6 MB view details)

Uploaded Python 3Windows ARM64

uv-0.10.10-py3-none-win_amd64.whl (24.2 MB view details)

Uploaded Python 3Windows x86-64

uv-0.10.10-py3-none-win32.whl (21.8 MB view details)

Uploaded Python 3Windows x86

uv-0.10.10-py3-none-musllinux_1_1_x86_64.whl (23.7 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.10.10-py3-none-musllinux_1_1_i686.whl (22.8 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.10.10-py3-none-manylinux_2_31_riscv64.whl (23.3 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.10.10-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (23.3 MB view details)

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

uv-0.10.10-py3-none-manylinux_2_28_aarch64.whl (22.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.10.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.10.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.10.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (24.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.10.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (23.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.10.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (22.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.10.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (22.3 MB view details)

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

uv-0.10.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (22.3 MB view details)

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

uv-0.10.10-py3-none-macosx_11_0_arm64.whl (20.4 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.10.10-py3-none-macosx_10_12_x86_64.whl (21.9 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.10.10-py3-none-linux_armv6l.whl (22.7 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.10.10.tar.gz
  • Upload date:
  • Size: 4.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10.tar.gz
Algorithm Hash digest
SHA256 266b24bf85aa021af37d3fb22d84ef40746bc4da402e737e365b12badff60e89
MD5 5c7a8e319516532668864b0e36d13ac5
BLAKE2b-256 772221476e738938bbb36fa0029d369c6989ade90039110a7013a24f4c6211c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-win_arm64.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 3873b965d62b282ab51e328f4b15a760b32b11a7231dc3fe658fa11d98f20136
MD5 90fd24c91344bb92cda9b012729001ca
BLAKE2b-256 e889ea5852f4dadf01d6490131e5be88b2e12ea85b9cd5ffdc2efc933a3b6892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-win_amd64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 3da90c197e8e9f5d49862556fa9f4a9dd5b8617c0bbcc88585664e777209a315
MD5 47fc278b55ba5d6142b0d07b241da451
BLAKE2b-256 89c8d314c4aab369aa105959a6b266e3e082a1252b8517564ea7a28b439726a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-win32.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-win32.whl
Algorithm Hash digest
SHA256 52e8b70a4fd7a734833c6a55714b679a10b29cf69b2e663e657df1995cf11c6a
MD5 6426a7eb3d5916b0f2af097b11807f5c
BLAKE2b-256 df7b3042f2fb5bf7288cbe7f954ca64badb1243bbac207c0119b4a2cef561564

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4f9fd7f62df91c2d91c02e2039d4c5bad825077d04ebd27af8ea35a8cc736daf
MD5 f820e031029c4c663c2ebdab41f9bf05
BLAKE2b-256 85716fb74f35ef3afdb6b3f77e35a29a571a5c789e89d97ec5cb7fd1285eb48e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e77e52ba74e0085a1c03a16611146c6f813034787f83a2fd260cdc8357e18d2d
MD5 f76bf2833b40472a2bc559718de93b11
BLAKE2b-256 3a1094b773933cd2e39aa9768dd11f85f32844e4dcb687c6df0714dfb3c0234a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8a59c80ade3aa20baf9ec5d17b6449f4fdba9212f6e3d1bdf2a6db94cbc64c21
MD5 99a521bdd0996af5a2bda2f2ce0b56f9
BLAKE2b-256 24e55af4d7426e39d7a7a751f8d1a7646d04e042a3c2c2c6aeb9d940ddc34df0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 41a3cc94e0c43070e48a521b6b26156ffde1cdc2088339891aa35eb2245ac5cf
MD5 6279b531ad05b11dfd890b8e7373d4ce
BLAKE2b-256 cf8c2e0a3690603e86f8470bae3a27896a9f8b56677b5cd337d131c4d594e0dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 22.4 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbd827042dbdcadeb5e3418bee73ded9feb5ead8edac23e6e1b5dadb5a90f8b2
MD5 440bffc3f5ab1cca91e7c77982d6ef9b
BLAKE2b-256 b9b69cc6e5442e3734615b5dbf45dcacf94cd46a05b1d04066cbdb992701e6bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e42e9e4a196ef75d1089715574eb1fe9bb62d390da05c6c8b36650a4de23d59f
MD5 9f490ccbcaea35a150fc15894ff47d8b
BLAKE2b-256 029584166104b968c02c2bb54c32082d702d29beb24384fb3f13ade0cb2456fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1085cc907a1315002015bc218cc88e42c5171a03a705421341cdb420400ee2f3
MD5 be1aa933a2b9bae2f249292ce118fc8c
BLAKE2b-256 9cb5d2bed329892b5298c493709bc851346d9750bafed51f8ba2b31e7d3ae0cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f56734baf7a8bd616da69cd7effe1a237c2cb364ec4feefe6a4b180f1cf5ec2
MD5 9a569604e73bc5eff44efb95e8b51098
BLAKE2b-256 ff1144f7f067b7dcfc57e21500918a50e0f2d56b23acdc9b2148dbd4d07b5078

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 23.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c863fb46a62f3c8a1b7bc1520b0939c05cf4fab06e7233fc48ed17538e6601e
MD5 6ffb68a93f22f9eedb575aec9cf7b21e
BLAKE2b-256 812fe4137b7f3f07c0cc1597b49c341b30f09cea13dbe57cd83ad14f5839dfff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f97709570158efc87d52ddca90f2c96293eea382d81be295b1fd7088153d6a83
MD5 5b716a6375e74693f40d11c38aadf99d
BLAKE2b-256 3f391678ed510b7ee6d68048460c428ca26d57cc798ca34d4775e113e7801144

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 49235f8a745ef10eea24b2f07be1ee77da056792cef897630b78c391c5f1e2e4
MD5 e0d33566285324f62dede87fd44ee36c
BLAKE2b-256 75e1852d1eb2630410f465287e858c93b2f2c81b668b7fa63c3f05356896706d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5dd85cc8ff9fa967c02c3edbf2b77d54b56bedcb56b323edec0df101f37f26e2
MD5 4f53990d6b50b31bcd7f2e3d13c2ce56
BLAKE2b-256 93c4f3f832e4871b2bb86423c4cdbbd40b10c835a426449e86951f992d63120a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 009a4c534e83bada52c8e2cccea6250e3486d01d609e4eb874cd302e2e534269
MD5 35a193e80f033da8c9e09977b8cc3b79
BLAKE2b-256 6f98aca12549cafc4c0346b04f8fed7f7ee3bfc2231b45b7e59d062d5b519746

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee47b5bc1b8ccd246a3801611b2b71c8107db3a2b528e64463d737fd8e4f2798
MD5 d427cccdd8633065b2d1256b5d47bff7
BLAKE2b-256 14444e8db982a986a08808cc5236e73c12bd6619823b3be41c9d6322d4746ebd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.10-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 22.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.10.10-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 2c89017c0532224dc1ec6f3be1bc4ec3d8c3f291c23a229e8a40e3cc5828f599
MD5 e149b2efdbbdc0d31acd2ec497e21206
BLAKE2b-256 7a2b2cbc9ebc53dc84ad698c31583735605eb55627109af59d9d3424eb824935

See more details on using hashes here.

Supported by

๐Ÿ‘ Image
AWS Cloud computing and Security Sponsor ๐Ÿ‘ Image
Datadog Monitoring ๐Ÿ‘ Image
Depot Continuous Integration ๐Ÿ‘ Image
Fastly CDN ๐Ÿ‘ Image
Google Download Analytics ๐Ÿ‘ Image
Pingdom Monitoring ๐Ÿ‘ Image
Sentry Error logging ๐Ÿ‘ Image
StatusPage Status page