Skip to main content

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

Project description

uv

uv image image image Actions status Discord

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

Shows a bar chart with benchmark results.

Installing Trio's dependencies with a warm cache.

Highlights

uv is backed by Astral, the creators of Ruff and ty.

Installation

Install uv with our standalone installers:

# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Or, from PyPI:

# With pip.
pip install uv
# Or pipx.
pipx install uv

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

uv self update

See the installation documentation for details and alternative installation methods.

Documentation

uv's documentation is available at docs.astral.sh/uv.

Additionally, the command line reference documentation can be viewed with uv help.

Features

Projects

uv manages project dependencies and environments, with support for lockfiles, workspaces, and more, similar to rye or poetry:

$ uv init example
Initialized project `example` at `/home/user/example`

$ cd example

$ uv add ruff
Creating virtual environment at: .venv
Resolved 2 packages in 170ms
   Built example @ file:///home/user/example
Prepared 2 packages in 627ms
Installed 2 packages in 1ms
 + example==0.1.0 (from file:///home/user/example)
 + ruff==0.5.0

$ uv run ruff check
All checks passed!

$ uv lock
Resolved 2 packages in 0.33ms

$ uv sync
Resolved 2 packages in 0.70ms
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.12 3.13 3.14
Installed 3 versions in 972ms
 + cpython-3.12.12-macos-aarch64-none (python3.12)
 + cpython-3.13.9-macos-aarch64-none (python3.13)
 + cpython-3.14.0-macos-aarch64-none (python3.14)

Download Python versions as needed:

$ uv venv --python 3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

$ uv run --python pypy@3.8 -- python --version
Python 3.8.16 (a9dbdca6fc3286b0addd2240f11d97d8e8de187a, Dec 29 2022, 11:45:30)
[PyPy 7.3.11 with GCC Apple LLVM 13.1.6 (clang-1316.0.21.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>>

Use a specific Python version in the current directory:

$ uv python pin 3.11
Pinned `.python-version` to `3.11`

See the Python installation documentation to get started.

The pip interface

uv provides a drop-in replacement for common pip, pip-tools, and virtualenv commands.

uv extends their interfaces with advanced features, such as dependency version overrides, platform-independent resolutions, reproducible resolutions, alternative resolution strategies, and more.

Migrate to uv without changing your existing workflows — and experience a 10-100x speedup — with the uv pip interface.

Compile requirements into a platform-independent requirements file:

$ uv pip compile 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.

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.

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.3.tar.gz (3.9 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.10.3-py3-none-win_arm64.whl (22.2 MB view details)

Uploaded Python 3Windows ARM64

uv-0.10.3-py3-none-win_amd64.whl (23.8 MB view details)

Uploaded Python 3Windows x86-64

uv-0.10.3-py3-none-win32.whl (21.4 MB view details)

Uploaded Python 3Windows x86

uv-0.10.3-py3-none-musllinux_1_1_x86_64.whl (23.3 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.10.3-py3-none-musllinux_1_1_i686.whl (22.5 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.10.3-py3-none-manylinux_2_31_riscv64.whl (22.8 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.10.3-py3-none-manylinux_2_28_aarch64.whl (21.9 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.10.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.10.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (23.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.10.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (24.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.10.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (23.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.10.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.10.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (22.0 MB view details)

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

uv-0.10.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (21.9 MB view details)

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

uv-0.10.3-py3-none-macosx_11_0_arm64.whl (20.1 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.10.3-py3-none-macosx_10_12_x86_64.whl (21.4 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.10.3-py3-none-linux_armv6l.whl (22.3 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.10.3.tar.gz
  • Upload date:
  • Size: 3.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3.tar.gz
Algorithm Hash digest
SHA256 56e15a90bf81a484e501f6ebc890024a47cb808800e18ecbc81f7d7668ff8b55
MD5 895b692be036106b6efb497d18a30cbc
BLAKE2b-256 60ad7e2de47ef90b2807572ca0410e7a2d5694b0afac6d31b559b6e2eff225e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-win_arm64.whl
  • Upload date:
  • Size: 22.2 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 f86596b464d6fb7951890708fdb907744cbd326464d6a5326919a6859eaefca2
MD5 138e8bc6a30d1ca4ac230b76cb283144
BLAKE2b-256 50f6324e84432441b8c03bf65724fabb11d8c7ccdac98e39bd717e4a72b838de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-win_amd64.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f2fa16083b6c5277f81c5b3ea4bf12e25e6d16c2a71c3c794506bd080c5afe6
MD5 c9915170cd4e5b26214e5f27e40c3b1f
BLAKE2b-256 d59589b9caeb4007d950dfa5fa5923c2ea67de541de0e3582598b7b9c7eeac53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-win32.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-win32.whl
Algorithm Hash digest
SHA256 d13307f74ce7b9f04962e12198a6c86b7032435979e1c1fd3845cce9b4b8befa
MD5 d3625a9d55de941d9390dbaa74de2e50
BLAKE2b-256 bbd65ccb14e919d43389d3746586d26649c45221deaafdddd714559f8f813b5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 037d93c77acb344ef28eac9ab554e5c237452b90ca4869830104397f2fb798a1
MD5 69c8a8e5ee3109e52e8355338ecfab25
BLAKE2b-256 93a3980c999480d3f0391f4c8d62c71404b9f096f15c49c644696e9e4d15586c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 22.5 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8868ae00305a4c4d0daeb6a2b3a7eef41e11e376176fbd8746288477c75fd674
MD5 d11cb0423b2909b96c34d7fd5a443399
BLAKE2b-256 6e3a52f1009c8e035253b94f3f255272e468fb553f1f8a9233b8acf5b3a9891f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9c67056288d0e7a000c926545cf9a7e37fd6f29cae2a0b36f2e8c905165dc99c
MD5 707db4dd6f009b40cf2a96339f849647
BLAKE2b-256 fcf74c248d6bc67c99828ef741f8090790f11bd522bded48bb8b6d7f18b7f924

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d930818bfa78976d68dac888123e6dda8e6fc506f0baf5058d8b4e7f514c8e17
MD5 42ee9deddae58a1f21e4799871efce70
BLAKE2b-256 f1cc1e83561367d78d3d0c0aa7eca89cd635d1e67865ed07067015a055755de9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8daf6530d6496da799dd53a4bfafe138b412a714ea0bff34472c1267229054c
MD5 0b4b58d9385ff4d1a16efca817641b45
BLAKE2b-256 cede0638d8aa83c2038c5f820151006b3bf372d109afbfdb2a8fc59187cc3690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddd903aec32ac4810857ebdbc526dd9624d70c549d0b0410ea06c617a89af7b6
MD5 539a0da4d22bc1d47fadf9bdff40f6ec
BLAKE2b-256 2e77feead72435bbd66ac12e452b98ac0798bf548135eb333f7597cefb43afe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b967705e8126ff33bf35d7531283bc5cf5096b8c2b7235772abfa55e1f174d14
MD5 72c37a3c7ceb360fd7cea2f0297aebcd
BLAKE2b-256 060232b1f98552498c0f390192a3496066e6470544ad8c552ae39ec1aea2b794

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95e2bedd5b618621dc4320f3dc863c8f00e07084d8f4ab77b39ddbe7822ddeda
MD5 253c5dde97fe39a8ade48b36fac9e9ab
BLAKE2b-256 f6092b61660fd3058b751c591b906fe1e34a8308586bb283beafe9df5487c83d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8ac385bb93bd1b1d4f74f234a3a6e89033eb50976da5d5a4d15218a84c7247f
MD5 c1bd15cd321411a539dbd3e5bb3878aa
BLAKE2b-256 beea6195af5b4d189d64f148a69991fa6335bf77d770c5eb763990787f0ebf65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 519d9449bf276395643358322c4199338ddf506d684001b12bd7777385d9f81c
MD5 43a4b72aada1b6aa297b9efc886f5dcb
BLAKE2b-256 ed0e3dc97fde6e16c974a9f937fdbdf9af713f2b96873f97cd16c78dc6295116

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 21.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c5dbc7071c7f18ddf8e445ca59e2f4e4f34872ddffcb971c0ec2d0aee959b3e
MD5 52435312b809cc5ad9d7cf1caf01e20c
BLAKE2b-256 e1b2bab536c11c24c49674820e8e2ebfa686db810d9776bdc5c47ba65beccc48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 20.1 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52241dbefdc1be57aaa37171d27372252d64f3347a5df9e5b8ee3de49207f6ff
MD5 101f091233ceec2cd22c7cbbe21fcdc5
BLAKE2b-256 0b8ccce26f6da9f69a9f0df032d642a4cb5603249f145c368e41b0154c463ca9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 21.4 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 815717d3ed409ca7573d3f95125d6bcec6978d2236bddad7bc123ac12dc6cfbb
MD5 2a06fc1c8066af52721e16ac3f125ba2
BLAKE2b-256 40dbc5729ec39ed557ac673ca993abd71e5b18d71a92f95f1845152e639000ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.10.3-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 22.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","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.3-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 de599782dfaa8ff818767cd07e6fbdcff41a7451a42c324b8a32862da7283148
MD5 ace2ba37daa56aee7fed84434591b93b
BLAKE2b-256 67a7e90f9c2c0a4f80c65102fa444ba71a6fe1233e2c4dd55fb68b9bf5e50607

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