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.13.tar.gz (4.1 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.13-py3-none-win_arm64.whl (23.6 MB view details)

Uploaded Python 3Windows ARM64

uv-0.11.13-py3-none-win_amd64.whl (25.2 MB view details)

Uploaded Python 3Windows x86-64

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

Uploaded Python 3Windows x86

uv-0.11.13-py3-none-musllinux_1_1_x86_64.whl (24.9 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

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

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.11.13-py3-none-manylinux_2_31_riscv64.whl (24.2 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.11.13-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl (24.1 MB view details)

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

uv-0.11.13-py3-none-manylinux_2_28_aarch64.whl (23.4 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.11.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (24.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.11.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

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

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.11.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (23.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.11.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (23.1 MB view details)

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

uv-0.11.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (23.3 MB view details)

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

uv-0.11.13-py3-none-macosx_11_0_arm64.whl (21.7 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.11.13-py3-none-macosx_10_12_x86_64.whl (23.1 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.11.13-py3-none-linux_armv6l.whl (23.5 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.11.13.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13.tar.gz
Algorithm Hash digest
SHA256 c30889b6a4417f94a0315371ec5bf8af151f062406ad3fb4b2cbf13d645d825c
MD5 c02462f5e3c314e2ca5ca23fd0f4f468
BLAKE2b-256 4d3c463dc85baffc8dda4183b31ba2546204740c0cbac5c01d3671c4eb52819c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-win_arm64.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 35aaca82115b8dc747f22b8c76b1026e707f4c9a59fe39ab3c21be111a65fa44
MD5 04d7bf37bb6805d28e0a3d5a96a81b5a
BLAKE2b-256 63994d75ad86221363a277c3be4e36e928e84f0dff256413e83e58d8af8c0e2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-win_amd64.whl
  • Upload date:
  • Size: 25.2 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 974ec55646a7e680f91cdf4f77fbc6e2a71157240cd0efa387d458709b63ab04
MD5 fee202a0a246ace6a30383aa4cd10e0c
BLAKE2b-256 d98901f90839cd1204e7a328cc36da27a09bc8b1a9692d3f9b79cee0a0945e1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-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.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-win32.whl
Algorithm Hash digest
SHA256 79c3f501bbf849bc566e108545891abfbc15e4e85c22d8875bfe405c1e2efc42
MD5 9c96d9b94f470125b4337e54735a3237
BLAKE2b-256 9494de37ee6b07459780de695e6c57e158ce1307de075f40718740a981132d9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 24.9 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf067fc357e1f75783c343e731c3bf4f8ca531917eafd6d9f18cd477ddaee158
MD5 4a3c9c0342f8cc7782027edde2ea9114
BLAKE2b-256 72d9dc2d1eb6b4181e5485cd36ecdb1c2f4fbec9b4078bb2b7266ef5481d2433

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-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.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d714e4a09e28198664758576542c7cedb054677ab3cdec60207a75ed74f82235
MD5 b09b8aa591b93b95de0994b4c4a14b4e
BLAKE2b-256 eabf9ab0db9d7f8d7b52382d70eb26bbd9e84dbe6cfce709ec7bf31895991a0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 24.2 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 bea50519b30c1bc4e4a331dcc1d55253cd8d886d243d3506ec00f34cdf030eff
MD5 41a89103a6ec93eff0fe1c22071dd464
BLAKE2b-256 9c888eabfbe745371696d09d08e47e637d567413071eb02c7e2324a919ba4f87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64, musllinux: musl 1.1+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl
Algorithm Hash digest
SHA256 b0807d1e9bc84c902cba9bb0b23627f6c980c54167c999e502571974fcfe2d6e
MD5 f8865d9366113e0c1b8496723e12b9ea
BLAKE2b-256 dea9291ff99b1dce9ec14b5a0358ad7d384485471d6ee4ecd7d98e05ef570da5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00efc945dd0392d7ac571cde402936e13ffba855121de79f42b3de9ee2f6a69a
MD5 3174b3f120ad5ed625372529e763575b
BLAKE2b-256 413d6cd9b920dcc83f0866e842caad5575cc3d5ca6604facbf5582950bbfc68c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 24.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e23ddb47f7a317979cf1945cf9ed89d2639f60f7d06164f9ff1ad292c4cc5b3c
MD5 d33edcc22e9d23dc1707e4e652e5aafb
BLAKE2b-256 e3addfb82224e73031c71dc70eb4513a6f4f6af66da35c3c955e28d75fe03d1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a714e866853c72cb2b7a18187cf3db4a1475a2032f3bd00e1c98ccf214c31d0
MD5 5aedf37e4020bd9be05d05fed7db77a9
BLAKE2b-256 eb0d44031030724a5128efb06be62a701fe36a1664f91aee346ffaf6f0432d39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4356e97a0e3e4d3ab53fd15415af12764a979759e37a3124372e3e6755e9a0c
MD5 e9c890994c29b938adc5ae3de300a0a8
BLAKE2b-256 15ccecb7174b11f64079ab9ec8ec0443aeaf69b86c6e6ad213b094d61ac71205

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-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.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd454d4f40e232355fa96937bae41e91b16279e2526034050576da5a2d8a7f40
MD5 660e50d0b8ca546155ef51963a702832
BLAKE2b-256 022c2311a29f32e1d404dc2fbc516e5febdf4567fcc3cfdd94e398bf5566b515

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 64dd1c36893d0da363d4c8e91c5d554d01a30061c83302eb93c75ca91b0f7eb3
MD5 1009eadb543e9b69127c973b335ad938
BLAKE2b-256 313c78a8afbb98a50db65f4096025bbeff7aac67af8a4d3329f4f9bd8b5acc42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 23.3 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb4fe81624bc92894c59aaf88a57cb1fcaf7da95dc3cf2ef1ed86847f0a7e9f6
MD5 e64754663a48cc09815d002d4a585555
BLAKE2b-256 12c7348575ae1ea6f312860915a60c1c7c4cf591339164ee321824ba9143a2c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5913805ee60b4e331dd7322ae95e18ceb110f6a5baae608d71a532ed1115e75
MD5 3ff80088cd1e8fad46c566bda99c5201
BLAKE2b-256 66f60dcbc43f83e90626981a10b179769b25c0a218717a4331f928c26b6e13a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 23.1 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72ad50ae5ce446f6887be842adffd1770b8e138caccc972f333915e524b323ac
MD5 8a39f13b3dc1624f4b96750b53252262
BLAKE2b-256 607ee48c24814e5a2cbf2bb9ccf55d9327813fe3074ada9526851914663dc380

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.11.13-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 23.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","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.13-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 4e56623a9ff6d7372290963cd21777bcb52aacbff6619d58a2659ee8240f8fed
MD5 eb1f28ec3a5c035e289ba1012b43fcc0
BLAKE2b-256 82e678a0092e303dd8edf5a3ea74442b17b2ed8c1e9f82e97c7359045cefccdc

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