# uv
[](https://github.com/astral-sh/uv)
[](https://pypi.python.org/pypi/uv)
[](https://pypi.python.org/pypi/uv)
[](https://pypi.python.org/pypi/uv)
[](https://github.com/astral-sh/uv/actions)
[](https://discord.gg/astral-sh)
An extremely fast Python package and project manager, written in Rust.
<p align="center">
<img alt="Shows a bar chart with benchmark results." src="https://github.com/astral-sh/uv/assets/1309177/629e59c0-9c6e-4013-9ad4-adb2bcf5080d">
</p>
<p align="center">
<i>Installing <a href="https://trio.readthedocs.io/">Trio</a>'s dependencies with a warm cache.</i>
</p>
## Highlights
- 🚀 A single tool to replace `pip`, `pip-tools`, `pipx`, `poetry`, `pyenv`, `twine`, `virtualenv`,
and more.
- ⚡️ [10-100x faster](https://github.com/astral-sh/uv/blob/main/BENCHMARKS.md) than `pip`.
- 🗂️ Provides [comprehensive project management](https://github.com/astral-sh/uv/blob/0.8.3/README.md#projects), with a
[universal lockfile](https://docs.astral.sh/uv/concepts/projects/layout#the-lockfile).
- ❇️ [Runs scripts](https://github.com/astral-sh/uv/blob/0.8.3/README.md#scripts), with support for
[inline dependency metadata](https://docs.astral.sh/uv/guides/scripts#declaring-script-dependencies).
- 🐍 [Installs and manages](https://github.com/astral-sh/uv/blob/0.8.3/README.md#python-versions) Python versions.
- 🛠️ [Runs and installs](https://github.com/astral-sh/uv/blob/0.8.3/README.md#tools) tools published as Python packages.
- 🔩 Includes a [pip-compatible interface](https://github.com/astral-sh/uv/blob/0.8.3/README.md#the-pip-interface) for a performance boost with a
familiar CLI.
- 🏢 Supports Cargo-style [workspaces](https://docs.astral.sh/uv/concepts/projects/workspaces) for
scalable projects.
- 💾 Disk-space efficient, with a [global cache](https://docs.astral.sh/uv/concepts/cache) for
dependency deduplication.
- ⏬ Installable without Rust or Python via `curl` or `pip`.
- 🖥️ Supports macOS, Linux, and Windows.
uv is backed by [Astral](https://astral.sh), the creators of
[Ruff](https://github.com/astral-sh/ruff).
## Installation
Install uv with our standalone installers:
```bash
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
```
```bash
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
```
Or, from [PyPI](https://pypi.org/project/uv/):
```bash
# With pip.
pip install uv
```
```bash
# Or pipx.
pipx install uv
```
If installed via the standalone installer, uv can update itself to the latest version:
```bash
uv self update
```
See the [installation documentation](https://docs.astral.sh/uv/getting-started/installation/) for
details and alternative installation methods.
## Documentation
uv's documentation is available at [docs.astral.sh/uv](https://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`:
```console
$ 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](https://docs.astral.sh/uv/guides/projects/) to get started.
uv also supports building and publishing projects, even if they're not managed with uv. See the
[publish guide](https://docs.astral.sh/uv/guides/publish/) to learn more.
### Scripts
uv manages dependencies and environments for single-file scripts.
Create a new script and add inline metadata declaring its dependencies:
```console
$ 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:
```console
$ uv run example.py
Reading inline script metadata from: example.py
Installed 5 packages in 12ms
<Response [200]>
```
See the [scripts documentation](https://docs.astral.sh/uv/guides/scripts/) 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`):
```console
$ 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`:
```console
$ 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](https://docs.astral.sh/uv/guides/tools/) to get started.
### Python versions
uv installs Python and allows quickly switching between versions.
Install multiple Python versions:
```console
$ uv python install 3.10 3.11 3.12
Searching for Python versions matching: Python 3.10
Searching for Python versions matching: Python 3.11
Searching for Python versions matching: Python 3.12
Installed 3 versions in 3.42s
+ cpython-3.10.14-macos-aarch64-none
+ cpython-3.11.9-macos-aarch64-none
+ cpython-3.12.4-macos-aarch64-none
```
Download Python versions as needed:
```console
$ 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:
```console
$ uv python pin 3.11
Pinned `.python-version` to `3.11`
```
See the [Python installation documentation](https://docs.astral.sh/uv/guides/install-python/) 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:
```console
$ uv pip compile docs/requirements.in \
--universal \
--output-file docs/requirements.txt
Resolved 43 packages in 12ms
```
Create a virtual environment:
```console
$ uv venv
Using Python 3.12.3
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate
```
Install the locked requirements:
```console
$ 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](https://docs.astral.sh/uv/pip/index/) to get started.
## Platform support
See uv's [platform support](https://docs.astral.sh/uv/reference/platforms/) document.
## Versioning policy
See uv's [versioning policy](https://docs.astral.sh/uv/reference/versioning/) document.
## 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](https://github.com/astral-sh/uv/blob/main/CONTRIBUTING.md) to get started.
## FAQ
#### How do you pronounce uv?
It's pronounced as "you - vee" ([`/juː viː/`](https://en.wikipedia.org/wiki/Help:IPA/English#Key))
#### How should I stylize uv?
Just "uv", please. See the [style guide](https://github.com/astral-sh/uv/blob/0.8.3/STYLE.md#styling-uv) for details.
## Acknowledgements
uv's dependency resolver uses [PubGrub](https://github.com/pubgrub-rs/pubgrub) under the hood. We're
grateful to the PubGrub maintainers, especially [Jacob Finkelman](https://github.com/Eh2406), for
their support.
uv's Git implementation is based on [Cargo](https://github.com/rust-lang/cargo).
Some of uv's optimizations are inspired by the great work we've seen in [pnpm](https://pnpm.io/),
[Orogene](https://github.com/orogene/orogene), and [Bun](https://github.com/oven-sh/bun). We've also
learned a lot from Nathaniel J. Smith's [Posy](https://github.com/njsmith/posy) and adapted its
[trampoline](https://github.com/njsmith/posy/tree/main/src/trampolines/windows-trampolines/posy-trampoline)
for Windows support.
## License
uv is licensed under either of
- Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/astral-sh/uv/blob/0.8.3/LICENSE-APACHE) or
<https://www.apache.org/licenses/LICENSE-2.0>)
- MIT license ([LICENSE-MIT](https://github.com/astral-sh/uv/blob/0.8.3/LICENSE-MIT) or <https://opensource.org/licenses/MIT>)
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.
<div align="center">
<a target="_blank" href="https://astral.sh" style="background:none">
<img src="https://raw.githubusercontent.com/astral-sh/uv/main/assets/svg/Astral.svg" alt="Made by Astral">
</a>
</div>
Raw data
{
"_id": null,
"home_page": "https://pypi.org/project/uv/",
"name": "uv",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "uv, requirements, packaging",
"author": "uv",
"author_email": "\"Astral Software Inc.\" <hey@astral.sh>",
"download_url": "https://files.pythonhosted.org/packages/eb/e3/2c3cb3e992fa1bf9af590bb37983f13e3ae67155820a09a98945664f71f3/uv-0.8.3.tar.gz",
"platform": null,
"description": "# uv\n\n[](https://github.com/astral-sh/uv)\n[](https://pypi.python.org/pypi/uv)\n[](https://pypi.python.org/pypi/uv)\n[](https://pypi.python.org/pypi/uv)\n[](https://github.com/astral-sh/uv/actions)\n[](https://discord.gg/astral-sh)\n\nAn extremely fast Python package and project manager, written in Rust.\n\n<p align=\"center\">\n <img alt=\"Shows a bar chart with benchmark results.\" src=\"https://github.com/astral-sh/uv/assets/1309177/629e59c0-9c6e-4013-9ad4-adb2bcf5080d\">\n</p>\n\n<p align=\"center\">\n <i>Installing <a href=\"https://trio.readthedocs.io/\">Trio</a>'s dependencies with a warm cache.</i>\n</p>\n\n## Highlights\n\n- \ud83d\ude80 A single tool to replace `pip`, `pip-tools`, `pipx`, `poetry`, `pyenv`, `twine`, `virtualenv`,\n and more.\n- \u26a1\ufe0f [10-100x faster](https://github.com/astral-sh/uv/blob/main/BENCHMARKS.md) than `pip`.\n- \ud83d\uddc2\ufe0f Provides [comprehensive project management](https://github.com/astral-sh/uv/blob/0.8.3/README.md#projects), with a\n [universal lockfile](https://docs.astral.sh/uv/concepts/projects/layout#the-lockfile).\n- \u2747\ufe0f [Runs scripts](https://github.com/astral-sh/uv/blob/0.8.3/README.md#scripts), with support for\n [inline dependency metadata](https://docs.astral.sh/uv/guides/scripts#declaring-script-dependencies).\n- \ud83d\udc0d [Installs and manages](https://github.com/astral-sh/uv/blob/0.8.3/README.md#python-versions) Python versions.\n- \ud83d\udee0\ufe0f [Runs and installs](https://github.com/astral-sh/uv/blob/0.8.3/README.md#tools) tools published as Python packages.\n- \ud83d\udd29 Includes a [pip-compatible interface](https://github.com/astral-sh/uv/blob/0.8.3/README.md#the-pip-interface) for a performance boost with a\n familiar CLI.\n- \ud83c\udfe2 Supports Cargo-style [workspaces](https://docs.astral.sh/uv/concepts/projects/workspaces) for\n scalable projects.\n- \ud83d\udcbe Disk-space efficient, with a [global cache](https://docs.astral.sh/uv/concepts/cache) for\n dependency deduplication.\n- \u23ec Installable without Rust or Python via `curl` or `pip`.\n- \ud83d\udda5\ufe0f Supports macOS, Linux, and Windows.\n\nuv is backed by [Astral](https://astral.sh), the creators of\n[Ruff](https://github.com/astral-sh/ruff).\n\n## Installation\n\nInstall uv with our standalone installers:\n\n```bash\n# On macOS and Linux.\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n```\n\n```bash\n# On Windows.\npowershell -ExecutionPolicy ByPass -c \"irm https://astral.sh/uv/install.ps1 | iex\"\n```\n\nOr, from [PyPI](https://pypi.org/project/uv/):\n\n```bash\n# With pip.\npip install uv\n```\n\n```bash\n# Or pipx.\npipx install uv\n```\n\nIf installed via the standalone installer, uv can update itself to the latest version:\n\n```bash\nuv self update\n```\n\nSee the [installation documentation](https://docs.astral.sh/uv/getting-started/installation/) for\ndetails and alternative installation methods.\n\n## Documentation\n\nuv's documentation is available at [docs.astral.sh/uv](https://docs.astral.sh/uv).\n\nAdditionally, the command line reference documentation can be viewed with `uv help`.\n\n## Features\n\n### Projects\n\nuv manages project dependencies and environments, with support for lockfiles, workspaces, and more,\nsimilar to `rye` or `poetry`:\n\n```console\n$ uv init example\nInitialized project `example` at `/home/user/example`\n\n$ cd example\n\n$ uv add ruff\nCreating virtual environment at: .venv\nResolved 2 packages in 170ms\n Built example @ file:///home/user/example\nPrepared 2 packages in 627ms\nInstalled 2 packages in 1ms\n + example==0.1.0 (from file:///home/user/example)\n + ruff==0.5.0\n\n$ uv run ruff check\nAll checks passed!\n\n$ uv lock\nResolved 2 packages in 0.33ms\n\n$ uv sync\nResolved 2 packages in 0.70ms\nAudited 1 package in 0.02ms\n```\n\nSee the [project documentation](https://docs.astral.sh/uv/guides/projects/) to get started.\n\nuv also supports building and publishing projects, even if they're not managed with uv. See the\n[publish guide](https://docs.astral.sh/uv/guides/publish/) to learn more.\n\n### Scripts\n\nuv manages dependencies and environments for single-file scripts.\n\nCreate a new script and add inline metadata declaring its dependencies:\n\n```console\n$ echo 'import requests; print(requests.get(\"https://astral.sh\"))' > example.py\n\n$ uv add --script example.py requests\nUpdated `example.py`\n```\n\nThen, run the script in an isolated virtual environment:\n\n```console\n$ uv run example.py\nReading inline script metadata from: example.py\nInstalled 5 packages in 12ms\n<Response [200]>\n```\n\nSee the [scripts documentation](https://docs.astral.sh/uv/guides/scripts/) to get started.\n\n### Tools\n\nuv executes and installs command-line tools provided by Python packages, similar to `pipx`.\n\nRun a tool in an ephemeral environment using `uvx` (an alias for `uv tool run`):\n\n```console\n$ uvx pycowsay 'hello world!'\nResolved 1 package in 167ms\nInstalled 1 package in 9ms\n + pycowsay==0.0.0.2\n \"\"\"\n\n ------------\n< hello world! >\n ------------\n \\ ^__^\n \\ (oo)\\_______\n (__)\\ )\\/\\\n ||----w |\n || ||\n```\n\nInstall a tool with `uv tool install`:\n\n```console\n$ uv tool install ruff\nResolved 1 package in 6ms\nInstalled 1 package in 2ms\n + ruff==0.5.0\nInstalled 1 executable: ruff\n\n$ ruff --version\nruff 0.5.0\n```\n\nSee the [tools documentation](https://docs.astral.sh/uv/guides/tools/) to get started.\n\n### Python versions\n\nuv installs Python and allows quickly switching between versions.\n\nInstall multiple Python versions:\n\n```console\n$ uv python install 3.10 3.11 3.12\nSearching for Python versions matching: Python 3.10\nSearching for Python versions matching: Python 3.11\nSearching for Python versions matching: Python 3.12\nInstalled 3 versions in 3.42s\n + cpython-3.10.14-macos-aarch64-none\n + cpython-3.11.9-macos-aarch64-none\n + cpython-3.12.4-macos-aarch64-none\n```\n\nDownload Python versions as needed:\n\n```console\n$ uv venv --python 3.12.0\nUsing Python 3.12.0\nCreating virtual environment at: .venv\nActivate with: source .venv/bin/activate\n\n$ uv run --python pypy@3.8 -- python --version\nPython 3.8.16 (a9dbdca6fc3286b0addd2240f11d97d8e8de187a, Dec 29 2022, 11:45:30)\n[PyPy 7.3.11 with GCC Apple LLVM 13.1.6 (clang-1316.0.21.2.5)] on darwin\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n>>>>\n```\n\nUse a specific Python version in the current directory:\n\n```console\n$ uv python pin 3.11\nPinned `.python-version` to `3.11`\n```\n\nSee the [Python installation documentation](https://docs.astral.sh/uv/guides/install-python/) to get\nstarted.\n\n### The pip interface\n\nuv provides a drop-in replacement for common `pip`, `pip-tools`, and `virtualenv` commands.\n\nuv extends their interfaces with advanced features, such as dependency version overrides,\nplatform-independent resolutions, reproducible resolutions, alternative resolution strategies, and\nmore.\n\nMigrate to uv without changing your existing workflows \u2014 and experience a 10-100x speedup \u2014 with the\n`uv pip` interface.\n\nCompile requirements into a platform-independent requirements file:\n\n```console\n$ uv pip compile docs/requirements.in \\\n --universal \\\n --output-file docs/requirements.txt\nResolved 43 packages in 12ms\n```\n\nCreate a virtual environment:\n\n```console\n$ uv venv\nUsing Python 3.12.3\nCreating virtual environment at: .venv\nActivate with: source .venv/bin/activate\n```\n\nInstall the locked requirements:\n\n```console\n$ uv pip sync docs/requirements.txt\nResolved 43 packages in 11ms\nInstalled 43 packages in 208ms\n + babel==2.15.0\n + black==24.4.2\n + certifi==2024.7.4\n ...\n```\n\nSee the [pip interface documentation](https://docs.astral.sh/uv/pip/index/) to get started.\n\n## Platform support\n\nSee uv's [platform support](https://docs.astral.sh/uv/reference/platforms/) document.\n\n## Versioning policy\n\nSee uv's [versioning policy](https://docs.astral.sh/uv/reference/versioning/) document.\n\n## Contributing\n\nWe are passionate about supporting contributors of all levels of experience and would love to see\nyou get involved in the project. See the\n[contributing guide](https://github.com/astral-sh/uv/blob/main/CONTRIBUTING.md) to get started.\n\n## FAQ\n\n#### How do you pronounce uv?\n\nIt's pronounced as \"you - vee\" ([`/ju\u02d0 vi\u02d0/`](https://en.wikipedia.org/wiki/Help:IPA/English#Key))\n\n#### How should I stylize uv?\n\nJust \"uv\", please. See the [style guide](https://github.com/astral-sh/uv/blob/0.8.3/STYLE.md#styling-uv) for details.\n\n## Acknowledgements\n\nuv's dependency resolver uses [PubGrub](https://github.com/pubgrub-rs/pubgrub) under the hood. We're\ngrateful to the PubGrub maintainers, especially [Jacob Finkelman](https://github.com/Eh2406), for\ntheir support.\n\nuv's Git implementation is based on [Cargo](https://github.com/rust-lang/cargo).\n\nSome of uv's optimizations are inspired by the great work we've seen in [pnpm](https://pnpm.io/),\n[Orogene](https://github.com/orogene/orogene), and [Bun](https://github.com/oven-sh/bun). We've also\nlearned a lot from Nathaniel J. Smith's [Posy](https://github.com/njsmith/posy) and adapted its\n[trampoline](https://github.com/njsmith/posy/tree/main/src/trampolines/windows-trampolines/posy-trampoline)\nfor Windows support.\n\n## License\n\nuv is licensed under either of\n\n- Apache License, Version 2.0, ([LICENSE-APACHE](https://github.com/astral-sh/uv/blob/0.8.3/LICENSE-APACHE) or\n <https://www.apache.org/licenses/LICENSE-2.0>)\n- MIT license ([LICENSE-MIT](https://github.com/astral-sh/uv/blob/0.8.3/LICENSE-MIT) or <https://opensource.org/licenses/MIT>)\n\nat your option.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in uv\nby you, as defined in the Apache-2.0 license, shall be dually licensed as above, without any\nadditional terms or conditions.\n\n<div align=\"center\">\n <a target=\"_blank\" href=\"https://astral.sh\" style=\"background:none\">\n <img src=\"https://raw.githubusercontent.com/astral-sh/uv/main/assets/svg/Astral.svg\" alt=\"Made by Astral\">\n </a>\n</div>\n\n",
"bugtrack_url": null,
"license": "MIT OR Apache-2.0",
"summary": "An extremely fast Python package and project manager, written in Rust.",
"version": "0.8.3",
"project_urls": {
"Changelog": "https://github.com/astral-sh/uv/blob/main/CHANGELOG.md",
"Discord": "https://discord.gg/astral-sh",
"Documentation": "https://docs.astral.sh/uv",
"Homepage": "https://pypi.org/project/uv/",
"Releases": "https://github.com/astral-sh/uv/releases",
"Repository": "https://github.com/astral-sh/uv"
},
"split_keywords": [
"uv",
" requirements",
" packaging"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c1ab7b881bb236b9c5f6d99a98adf0c4d1e7c4f0cf4b49051d6d24eb82f19c10",
"md5": "a791c0a3a41b8aed35e0435cbd447a06",
"sha256": "ae7efe91dcfc24126fa91e0fb69a1daf6c0e494a781ba192bb0cc62d7ab623ee"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-linux_armv6l.whl",
"has_sig": false,
"md5_digest": "a791c0a3a41b8aed35e0435cbd447a06",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17912668,
"upload_time": "2025-07-24T21:13:50",
"upload_time_iso_8601": "2025-07-24T21:13:50.682754Z",
"url": "https://files.pythonhosted.org/packages/c1/ab/7b881bb236b9c5f6d99a98adf0c4d1e7c4f0cf4b49051d6d24eb82f19c10/uv-0.8.3-py3-none-linux_armv6l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa9b64d2ed7388ce88971ffb93d45e74465c95bb885bff40c93f5037b7250930",
"md5": "1b6ea2901a0bf8d73ff1ecacce244bd7",
"sha256": "966ec7d7f57521fef0fee685d71e183c9cafb358ddcfe27519dfeaf40550f247"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1b6ea2901a0bf8d73ff1ecacce244bd7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17947557,
"upload_time": "2025-07-24T21:13:54",
"upload_time_iso_8601": "2025-07-24T21:13:54.590262Z",
"url": "https://files.pythonhosted.org/packages/fa/9b/64d2ed7388ce88971ffb93d45e74465c95bb885bff40c93f5037b7250930/uv-0.8.3-py3-none-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9cba8ceec5d6a1adf6b827db557077d8059e573a84c3708a70433d22a0470fab",
"md5": "5525eae361a941c48e36145ef84a274e",
"sha256": "3f904f574dc2d7aa1d96ddf2483480ecd121dc9d060108cadd8bff100b754b64"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5525eae361a941c48e36145ef84a274e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 16638472,
"upload_time": "2025-07-24T21:13:57",
"upload_time_iso_8601": "2025-07-24T21:13:57.570096Z",
"url": "https://files.pythonhosted.org/packages/9c/ba/8ceec5d6a1adf6b827db557077d8059e573a84c3708a70433d22a0470fab/uv-0.8.3-py3-none-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3766d2eb90936603756c4a71f9cf5de8d9214fa4d11dcb5a89117389acecd5e",
"md5": "5bcc00c3917d1032f9acef3dfd91c498",
"sha256": "8b16f1bddfdf8f7470924ab34a7b55e4c372d5340c7c1e47e7fc84a743dc541f"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5bcc00c3917d1032f9acef3dfd91c498",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17221472,
"upload_time": "2025-07-24T21:14:00",
"upload_time_iso_8601": "2025-07-24T21:14:00.158523Z",
"url": "https://files.pythonhosted.org/packages/a3/76/6d2eb90936603756c4a71f9cf5de8d9214fa4d11dcb5a89117389acecd5e/uv-0.8.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5bbfc3e1cc9604b114dfb49a3a40a230b5410fc97776c149ca73bb524990f9ba",
"md5": "d564dc0c97bbb49af66ee5b20b1503c1",
"sha256": "526f2c3bd6f311ce31f6f7b6b7d818b191f41e76bed3aaab671b716220c02d8f"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d564dc0c97bbb49af66ee5b20b1503c1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17607299,
"upload_time": "2025-07-24T21:14:02",
"upload_time_iso_8601": "2025-07-24T21:14:02.226500Z",
"url": "https://files.pythonhosted.org/packages/5b/bf/c3e1cc9604b114dfb49a3a40a230b5410fc97776c149ca73bb524990f9ba/uv-0.8.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5316819f876f5ca2f8989c19d9b65b7d794d60e6cca0d13187bbc8c8b5532b52",
"md5": "5700ff20a2e9d37273b3a512a21126ac",
"sha256": "76de331a07e5ae9b6490e70a9439a072b91b3167a5684510af10c2752c4ece9a"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5700ff20a2e9d37273b3a512a21126ac",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18218124,
"upload_time": "2025-07-24T21:14:04",
"upload_time_iso_8601": "2025-07-24T21:14:04.809825Z",
"url": "https://files.pythonhosted.org/packages/53/16/819f876f5ca2f8989c19d9b65b7d794d60e6cca0d13187bbc8c8b5532b52/uv-0.8.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac31adeedaa009d8d919107c52afb58689d5e9db578b07f8dea5e15e4c738d52",
"md5": "16dbc555c0511a18b27ae9678334dbfe",
"sha256": "9ce7981f4fbeecf93dc5cf0a5a7915e84956fd99ad3ac977c048fe0cfdb1a17e"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "16dbc555c0511a18b27ae9678334dbfe",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 19384261,
"upload_time": "2025-07-24T21:14:09",
"upload_time_iso_8601": "2025-07-24T21:14:09.425278Z",
"url": "https://files.pythonhosted.org/packages/ac/31/adeedaa009d8d919107c52afb58689d5e9db578b07f8dea5e15e4c738d52/uv-0.8.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61a81df852a9153fec0c713358a50cfd7a21a4e17b5ed5704a390c0f3da448ab",
"md5": "0532325c5070d0d208424b8cf720cba6",
"sha256": "989898caeb6e972979543b57547d1c28ab8af81ff8fc15921fd354c17d432749"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"has_sig": false,
"md5_digest": "0532325c5070d0d208424b8cf720cba6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 19638846,
"upload_time": "2025-07-24T21:14:07",
"upload_time_iso_8601": "2025-07-24T21:14:07.074109Z",
"url": "https://files.pythonhosted.org/packages/61/a8/1df852a9153fec0c713358a50cfd7a21a4e17b5ed5704a390c0f3da448ab/uv-0.8.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d87b3981f499e2b13c5ef0022fd7809f0fccbecd41282ae4f6a0e3fd5fa1430",
"md5": "2c908a3f9b926203da36eba4c3455961",
"sha256": "8486f7576d15cc73509f93f47b3190f44701ea36839906369301b58c8604d5db"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2c908a3f9b926203da36eba4c3455961",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18673722,
"upload_time": "2025-07-24T21:14:11",
"upload_time_iso_8601": "2025-07-24T21:14:11.656446Z",
"url": "https://files.pythonhosted.org/packages/8d/87/b3981f499e2b13c5ef0022fd7809f0fccbecd41282ae4f6a0e3fd5fa1430/uv-0.8.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e620d1ba1c666c5492d3716d8d3fba425f65ed2acc6707544c3cbbd381f6cbe",
"md5": "dd1d8145dcc6ab8cdc6a2d4670616ea0",
"sha256": "f1eb7c896fc0d80ed534748aaf46697b6ebc8ce401f1c51666ce0b9923c3db9a"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dd1d8145dcc6ab8cdc6a2d4670616ea0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18658829,
"upload_time": "2025-07-24T21:14:13",
"upload_time_iso_8601": "2025-07-24T21:14:13.798926Z",
"url": "https://files.pythonhosted.org/packages/5e/62/0d1ba1c666c5492d3716d8d3fba425f65ed2acc6707544c3cbbd381f6cbe/uv-0.8.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ccae11d09be3c74ca4896d55701ebbca7fe7a32db0502cf9f4c57e20bf77bfc4",
"md5": "567137f36872f44755b459b9fe1185eb",
"sha256": "1121ad1c9389b865d029385031d3fd7d90d343c92a2149a4d4aa20bf469cb27f"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "567137f36872f44755b459b9fe1185eb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17460029,
"upload_time": "2025-07-24T21:14:15",
"upload_time_iso_8601": "2025-07-24T21:14:15.993810Z",
"url": "https://files.pythonhosted.org/packages/cc/ae/11d09be3c74ca4896d55701ebbca7fe7a32db0502cf9f4c57e20bf77bfc4/uv-0.8.3-py3-none-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2247b67296c62381b8369f082a33d9fdcb7c579ad9922bcce7b09cd4af935dfa",
"md5": "71bc8f5750e26c8950edfde768333ab5",
"sha256": "5313ee776ad65731ffa8ac585246f987d3a2bf72e6153c12add1fff22ad6e500"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-manylinux_2_31_riscv64.whl",
"has_sig": false,
"md5_digest": "71bc8f5750e26c8950edfde768333ab5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18398665,
"upload_time": "2025-07-24T21:14:18",
"upload_time_iso_8601": "2025-07-24T21:14:18.399345Z",
"url": "https://files.pythonhosted.org/packages/22/47/b67296c62381b8369f082a33d9fdcb7c579ad9922bcce7b09cd4af935dfa/uv-0.8.3-py3-none-manylinux_2_31_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "015f23990de5487085ca86e12f99d0a8f8410419442ffd35c42838675df5549b",
"md5": "13f920b4556f944dbddd9e74cc9ca67d",
"sha256": "daa6e0d657a94f20e962d4a03d833ef7af5c8e51b7c8a2d92ba6cf64a4c07ac1"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-musllinux_1_1_armv7l.whl",
"has_sig": false,
"md5_digest": "13f920b4556f944dbddd9e74cc9ca67d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17560408,
"upload_time": "2025-07-24T21:14:20",
"upload_time_iso_8601": "2025-07-24T21:14:20.609295Z",
"url": "https://files.pythonhosted.org/packages/01/5f/23990de5487085ca86e12f99d0a8f8410419442ffd35c42838675df5549b/uv-0.8.3-py3-none-musllinux_1_1_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89421a8ce79d2ce7268e52690cd0f1b6c3e6c8d748a68d42de206e37219e9627",
"md5": "cd1f3a62b28b9c36f0d461faa8b9acb9",
"sha256": "ad13453ab0a1dfa64a221aac8f52199efdcaa52c97134fffd7bcebed794a6f4b"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "cd1f3a62b28b9c36f0d461faa8b9acb9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17758504,
"upload_time": "2025-07-24T21:14:23",
"upload_time_iso_8601": "2025-07-24T21:14:23.086424Z",
"url": "https://files.pythonhosted.org/packages/89/42/1a8ce79d2ce7268e52690cd0f1b6c3e6c8d748a68d42de206e37219e9627/uv-0.8.3-py3-none-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b39ae94e06ac00cb5002e636af0e48c5180fab5b50a463dc96386875ea511ea",
"md5": "634b98e96e51422076744fb0df548ec8",
"sha256": "5843cc43bafad05cc710d8e31bd347ee37202462a63d32c30746e9df48cfbda2"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "634b98e96e51422076744fb0df548ec8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18741736,
"upload_time": "2025-07-24T21:14:25",
"upload_time_iso_8601": "2025-07-24T21:14:25.329579Z",
"url": "https://files.pythonhosted.org/packages/6b/39/ae94e06ac00cb5002e636af0e48c5180fab5b50a463dc96386875ea511ea/uv-0.8.3-py3-none-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18e0a2fe9cc5f7b8815cbf97cb1bf64abb71fcb65f25ca7a5a8cdd4c2e23af97",
"md5": "6de6c4fc9dbc3d0c4d7d2647779143bb",
"sha256": "17bcdb0615e37cc5f985f7d7546f755ac6343c1dc8bbe876c892437f14f8f904"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-win32.whl",
"has_sig": false,
"md5_digest": "6de6c4fc9dbc3d0c4d7d2647779143bb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 17723422,
"upload_time": "2025-07-24T21:14:28",
"upload_time_iso_8601": "2025-07-24T21:14:28.020670Z",
"url": "https://files.pythonhosted.org/packages/18/e0/a2fe9cc5f7b8815cbf97cb1bf64abb71fcb65f25ca7a5a8cdd4c2e23af97/uv-0.8.3-py3-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfc3da508ec0f6883f1c269a0a477bb6447c81d5383fe3ad5d5ea3d45469fd30",
"md5": "8a30108af61a65695ab0910e38ae2fd9",
"sha256": "2e311c029bff2ca07c6ddf877ccc5935cabb78e09b94b53a849542665b6a6fa1"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "8a30108af61a65695ab0910e38ae2fd9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 19531666,
"upload_time": "2025-07-24T21:14:30",
"upload_time_iso_8601": "2025-07-24T21:14:30.192508Z",
"url": "https://files.pythonhosted.org/packages/cf/c3/da508ec0f6883f1c269a0a477bb6447c81d5383fe3ad5d5ea3d45469fd30/uv-0.8.3-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b28dc0354e416697b4baa7ceaad0e423639b6683d1f8299355e390a64809f7bf",
"md5": "7c67721304f17d353fd88b633ceef932",
"sha256": "391c97577048a40fd8c85b370055df6420f26e81df7fa906f0e0ce1aa2af3527"
},
"downloads": -1,
"filename": "uv-0.8.3-py3-none-win_arm64.whl",
"has_sig": false,
"md5_digest": "7c67721304f17d353fd88b633ceef932",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 18161557,
"upload_time": "2025-07-24T21:14:32",
"upload_time_iso_8601": "2025-07-24T21:14:32.482191Z",
"url": "https://files.pythonhosted.org/packages/b2/8d/c0354e416697b4baa7ceaad0e423639b6683d1f8299355e390a64809f7bf/uv-0.8.3-py3-none-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ebe32c3cb3e992fa1bf9af590bb37983f13e3ae67155820a09a98945664f71f3",
"md5": "94b7a3d2e71d8c2549124309ef23acdc",
"sha256": "2ccaae4c749126c99f6404d67a0ae1eae29cbafb05603d09094a775061fdf4e5"
},
"downloads": -1,
"filename": "uv-0.8.3.tar.gz",
"has_sig": false,
"md5_digest": "94b7a3d2e71d8c2549124309ef23acdc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 3415565,
"upload_time": "2025-07-24T21:14:34",
"upload_time_iso_8601": "2025-07-24T21:14:34.417858Z",
"url": "https://files.pythonhosted.org/packages/eb/e3/2c3cb3e992fa1bf9af590bb37983f13e3ae67155820a09a98945664f71f3/uv-0.8.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-24 21:14:34",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "astral-sh",
"github_project": "uv",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "uv"
}