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.9.27.tar.gz (3.8 MB view details)

Uploaded Source

Built Distributions

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

uv-0.9.27-py3-none-win_arm64.whl (21.8 MB view details)

Uploaded Python 3Windows ARM64

uv-0.9.27-py3-none-win_amd64.whl (23.4 MB view details)

Uploaded Python 3Windows x86-64

uv-0.9.27-py3-none-win32.whl (20.8 MB view details)

Uploaded Python 3Windows x86

uv-0.9.27-py3-none-musllinux_1_1_x86_64.whl (23.0 MB view details)

Uploaded Python 3musllinux: musl 1.1+ x86-64

uv-0.9.27-py3-none-musllinux_1_1_i686.whl (22.1 MB view details)

Uploaded Python 3musllinux: musl 1.1+ i686

uv-0.9.27-py3-none-manylinux_2_31_riscv64.whl (22.4 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

uv-0.9.27-py3-none-manylinux_2_28_aarch64.whl (21.7 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

uv-0.9.27-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

uv-0.9.27-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

uv-0.9.27-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (23.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

uv-0.9.27-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (24.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

uv-0.9.27-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (22.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

uv-0.9.27-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

uv-0.9.27-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl (21.6 MB view details)

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

uv-0.9.27-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (21.6 MB view details)

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

uv-0.9.27-py3-none-macosx_11_0_arm64.whl (19.8 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

uv-0.9.27-py3-none-macosx_10_12_x86_64.whl (21.1 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

uv-0.9.27-py3-none-linux_armv6l.whl (22.0 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: uv-0.9.27.tar.gz
  • Upload date:
  • Size: 3.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27.tar.gz
Algorithm Hash digest
SHA256 9147862902b5d40894f78339803225e39b0535c4c04537188de160eb7635e46b
MD5 53c3f3fbc6e3cbca6ef5206494e35b80
BLAKE2b-256 9270611bcee4385b7aa00cf7acf29bc51854c365ee09ddb2cdb14b07a36b4db8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-win_arm64.whl
  • Upload date:
  • Size: 21.8 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 463327fb343c3085a3333389d6e5908cb48203b327707790c06bdc8f2ca57b95
MD5 40c216cc584c47d2e5d15017cc231847
BLAKE2b-256 17eb9a71112e2266b79da552a4b2ffb52331ca7171437b901705427f8e54e77c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-win_amd64.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 f961c53f83ae6a01e3ffacc584c91044958bc6db003e803c490e106a79981222
MD5 a6c5eb5e5c153f0779becb21eb2cafcd
BLAKE2b-256 db1922d2671928f6d2fef1edfdbf758abbb5a0f218b69fd23bd5fd52bbe5b078

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-win32.whl
  • Upload date:
  • Size: 20.8 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-win32.whl
Algorithm Hash digest
SHA256 18aab0e19634997366907a9b8a1648e79b0fa34d1b86d8e8ee1e7ba5b9faa6ae
MD5 ad1ec375a5d266be772c214ad988cda3
BLAKE2b-256 aac5c3bb3a5885891ed8fe7dcc897db03366f3e19da8bf48ae8f5ea4da34545d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: Python 3, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4f534ad701ca3fffac4a8e1df2a36930e6a0cbf4dad52aeabc2c3c9e2cbbe65e
MD5 fb6135089fb3568eb0570fbad0ec5795
BLAKE2b-256 13151e7b34f02e8f53c9498311f991421e794ad57fa60a2d3e41b43485e914e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 22.1 MB
  • Tags: Python 3, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 542731a6f53072e725959a9c839b195048715d840213d9834d36f74fa4249855
MD5 9cff208f61e18a8b72cbd36a7400c87d
BLAKE2b-256 97293acef6a0eea58afbf7f7a08e4258430e3c7394a6b1e28249450f4c0ddc60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 22.4 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1555ab7bc8501144e8771e54a628eb02cb95f3612d54659bb7132576260feee5
MD5 349325f6f0221cf390550480b5a96a37
BLAKE2b-256 44024d4cf298bd22e53d6c289404b093cf876e64ee1fb946cc32a6f965030629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 21.7 MB
  • Tags: Python 3, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e2d4183a0dca7596ea6385e9d5a0a87ada4f71a70aa110e2b22234370b8d8ef
MD5 72ac44233ee32488e72c941426db2c37
BLAKE2b-256 9f70fbab20d40afe7ac9ec20011acec75f8bb3b9b83dfbe2cdb1405cad7a8cf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 22.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79939f7e92d707fb84933509df747d1b88b00d94ebe41f3a1e30916cc33c7307
MD5 f0b219f6e9444855ba2382152256c77d
BLAKE2b-256 1519b35928e55307beb69b60b88446df3cb8d7ff3ba0993fc2214a43266c17d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 22.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33902c95b561ac67d15c339fe1eaf39e068372c7464c79c3bd0e2bf9ee914dcb
MD5 c254652493dbbe9f40345fda572b0df9
BLAKE2b-256 d9c678b619a51a6646af4633714b161f980ab764cc892e0f79228162fba51fe8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 23.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79841a2e4df4a32f22fbb0919c3e513226684572fba227b37467ba6404f3fafd
MD5 c6eaac63ddb17395fb0a25af0d9a996d
BLAKE2b-256 6f04551749fd863cb43290c9a3f4348ccdd88ec0445c26a00ba840d776572867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 24.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0c9b2e874f5207a50b852726f3a0740eadf30baf2c7973380d697f4e3166d347
MD5 98bd71fb73280d029d104620cfd5bb5a
BLAKE2b-256 eb767c1b13e4dc8237dd3721f4ec933bb2e5be400fd2812cf98dc2be645a0f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 22.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a56e0c92da67060d4c86a3b92b2c69e8fb1d61933636764aba16531ddb13f6e3
MD5 4c2b1331c4480fac1b1da5c12d7db72d
BLAKE2b-256 da0e1d44157bc8e5d1c382db087d9a30ab85fc7b5c2d610fb2e3d861c5a69d9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c331e0445465ea6029e2dd0f5499024e552136c10069fac0ca21708f2aeb1ce6
MD5 2b16c9c39349135970ee896e0a6895f8
BLAKE2b-256 c28ae181c32b7f5309fd987667d368fb944822c713e92a7eba3c73d2eddec6cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3f8cf7a50a95ae5cb0366d24edf79d15b3ba380b462af49e3404f9f7b91101c7
MD5 b55c8cb6c9d4795619d7c9e3821ea0c9
BLAKE2b-256 e2310faaad82951fc6b14dfad8e187e43747a528aa50ee283385f903e86d67d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 21.6 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f2393051ed2023cc7d6ff99e41184b7c7bb7da001bc727cd4bee6da96f4a966
MD5 62c512378038d5c2fb1f864ba90f3fa2
BLAKE2b-256 3ef759679af9f0446d8ffc1239e3356390c95925e0004549b64df3f189b1422b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f00158023e77600da602c5f1fa97cd8c2eef987d6aba34c16cf04a3e5a932f4
MD5 11ef22bcd0b2e95b8eda44a9617daa68
BLAKE2b-256 441dbe2d80573c531389933059f6e5ef265ef7324c268f3ade80e500aa627f6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 21.1 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a662a7df5cc781ae7baa65171b5d488d946ea93e61b7bbeda5a24d21a0cd9003
MD5 40b4df5e55a6fd98abeac8a1f3a3952e
BLAKE2b-256 eab2c36a87f5c745d310b7d8a53df053d6a87864aa38e3a964b0845eb6de37cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uv-0.9.27-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 22.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","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.9.27-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 ce3f16e66a96dcdc63f6ada9f7747686930986d2df104a9dd2d09664b2d870c8
MD5 765069ded82f1fd844b4005b862121c2
BLAKE2b-256 53f19e9afb9fadb73f7914a0fc63b6f9d182b6fe6b1e55deb7cbdc29ff31299f

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