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

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

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.11.3.tar.gz (4.0 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.11.3-py3-none-win_arm64.whl (23.5 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.3-py3-none-win_amd64.whl (25.0 MB view details)

Uploaded Python 3Windows x86-64

uv-0.11.3-py3-none-win32.whl (22.6 MB view details)

Uploaded Python 3Windows x86

uv-0.11.3-py3-none-musllinux_1_1_x86_64.whl (24.8 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.11.3-py3-none-musllinux_1_1_i686.whl (23.8 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.3-py3-none-manylinux_2_31_riscv64.whl (24.0 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.3-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (23.9 MB view details)

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

uv-0.11.3-py3-none-manylinux_2_28_aarch64.whl (23.2 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.11.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (23.0 MB view details)

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

uv-0.11.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.1 MB view details)

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

uv-0.11.3-py3-none-macosx_11_0_arm64.whl (21.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.3-py3-none-macosx_10_12_x86_64.whl (22.9 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.3-py3-none-linux_armv6l.whl (23.3 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.3.tar.gz
  • Upload date:
  • Size: 4.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3.tar.gz
Algorithm Hash digest
SHA256 6a6fcaf1fec28bbbdf0dfc5a0a6e34be4cea08c6287334b08c24cf187300f20d
MD5 0b4007f152ad2da2271c76a4a70d24b4
BLAKE2b-256 88edf11c558e8d2e02fba6057dacd9e92a71557359a80bd5355452310b89f40f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 92ffc4d521ab2c4738ef05d8ef26f2750e26d31f3ad5611cdfefc52445be9ace
MD5 e4dab977e2bd3358d743b9ba6f124720
BLAKE2b-256 f86d3f0b90a06e8c4594e11f813651756d6896de6dd4461f554fd7e4984a1c4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.0 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 68fda574f2e5e7536a2b747dcea88329a71aad7222317e8f4717d0af8f99fbd4
MD5 26f4bcfe6e616d5b483ad7eb8c2c6c03
BLAKE2b-256 ffa095d22d524bd3b4708043d65035f02fc9656e5fb6e0aaef73510313b1641b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-win32.whl
  • Upload date:
  • Size: 22.6 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-win32.whl
Algorithm Hash digest
SHA256 794aae3bab141eafbe37c51dc5dd0139658a755a6fa9cc74d2dbd7c71dcc4826
MD5 2bcc74add27ea2be36aaa84400032afb
BLAKE2b-256 79e5e676454bb7cc5dcf5c4637ed3ef0ff97309d84a149b832a4dea53f04c0ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 24.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ebccdcdebd2b288925f0f7c18c39705dc783175952eacaf94912b01d3b381b86
MD5 bdc6474f8e920a43885ceb9571d8f8ca
BLAKE2b-256 35193ff3539c44ca7dc2aa87b021d4a153ba6a72866daa19bf91c289e4318f95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a62e29277efd39c35caf4a0fe739c4ebeb14d4ce4f02271f3f74271d608061ff
MD5 7ab7a8a3c53f9009b7925a2c5e00c145
BLAKE2b-256 667df83ed79921310ef216ed6d73fcd3822dff4b66749054fb97e09b7bd5901e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.0 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 3ff461335888336467402cc5cb792c911df95dd0b52e369182cfa4c902bb21f4
MD5 4900ce5f59562fb1fb811afa7b9a5084
BLAKE2b-256 080dc59f24b3a1ae5f377aa6fd9653562a0968ea6be946fe35761871a0072919

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 23.9 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 089b9d338a64463956b6fee456f03f73c9a916479bdb29009600781dc1e1d2a7
MD5 37d1a780dc8d2637741bd4c9978b4104
BLAKE2b-256 aa188669840657fea9fd668739dec89643afe1061c023c1488228b02f79a2399

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45006bcd9e8718248a23ab81448a5beb46a72a9dd508e3212d6f3b8c63aeb88a
MD5 5ff74d86bbdbb49a126b3d5548128143
BLAKE2b-256 184f22ada41564a8c8c36653fc86f89faae4c54a4cdd5817bda53764a3eb352d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fde893b5ab9f6997fe357138e794bac09d144328052519fbbe2e6f72145e457
MD5 3d20ecfa5cd3d3f4de79ef53e344c519
BLAKE2b-256 4ebe7c66d350f833eb437f9aa0875655cc05e07b441e3f4a770f8bced56133f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8df030ea7563e99c09854e1bc82ab743dfa2d0ba18976e6861979cb40d04dba7
MD5 82645dcf28f5f64b4fc5b7f21f815e78
BLAKE2b-256 88ab6266a04980e0877af5518762adfe23a0c1ab0b801ae3099a2e7b74e34411

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6708827ecb846d00c5512a7e4dc751c2e27b92e9bd55a0be390561ac68930c32
MD5 767d05098d858511e8b3068c1f1f8155
BLAKE2b-256 b6625c3aa5e7bd2744810e50ad72a5951386ec84a513e109b1b5cb7ec442f3b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef0ae8ee2988928092616401ec7f473612b8e9589fe1567452c45dbc56840f85
MD5 b970b828c24d9f76a0f30a067c8cdb8c
BLAKE2b-256 38741a1b0712daead7e85f56d620afe96fe166a04b615524c14027b4edd39b82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 088165b9eed981d2c2a58566cc75dd052d613e47c65e2416842d07308f793a6f
MD5 186d225a60d8fdc389e9ed56af9f2e62
BLAKE2b-256 ff511a6010a681a3c3e0a8ec99737ba2d0452194dc372a5349a9267873261c02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3b1fe09d5e1d8e19459cd28d7825a3b66ef147b98328345bad6e17b87c4fea48
MD5 bc88e20602db7779f2e3faa88da98496
BLAKE2b-256 d17b1ac9e1f753a19b6252434f0bbe96efdcc335cd74677f4c6f431a7c916114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55ba578752f29a3f2b22879b22a162edad1454e3216f3ca4694fdbd4093a6822
MD5 4bf54535bad63c04ecf9397f86bf88de
BLAKE2b-256 9a71fffcd890290a4639a3799cf3f3e87947c10d1b0de19eba3cf837cb418dd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.5 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71f5d0b9e73daa5d8a7e2db3fa2e22a4537d24bb4fe78130db797280280d4edc
MD5 ee60ecefee527d34420fac66fc30a677
BLAKE2b-256 bac77d01be259a47d42fa9e80adcb7a829d81e7c376aa8fa1b714f31d7dfc226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2b3b0fa1693880ca354755c216ae1c65dd938a4f1a24374d0c3f4b9538e0ee6
MD5 6afb0e203510379d93f98f79443082b8
BLAKE2b-256 7a4bc44fd3fbc80ac2f81e2ad025d235c820aac95b228076da85be3f5d509781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.3-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.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.11.3-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 deb533e780e8181e0859c68c84f546620072cd1bd827b38058cb86ebfba9bb7d
MD5 02013146b9db84ccb9bf12c405bfd55d
BLAKE2b-256 cb934f04c49fd6046a18293de341d795ded3b9cbd95db261d687e26db0f11d1e

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