167 KiB
Changelog
0.4.0
This release adds first-class support for Python projects that are not designed as Python packages (e.g., web applications, data science projects, etc.).
In doing so, it includes some breaking changes around uv's handling of projects. Previously, uv required that all projects could be built into distributable Python packages, and installed them into the virtual environment. Projects created by uv init always included a [build-system] definition and existing projects that did not define a [build-system] would use the legacy setuptools build backend by default.
Most users are not developing libraries that need to be packaged and published to PyPI. Instead, they're building applications using web frameworks, or running collections of Python scripts in the project's root directory. In these cases, requiring a [build-system] was confusing and error-prone. In this release, uv changes the default behavior to orient around these common use cases.
In summary, the major changes are:
- uv no longer attempts to package and install projects that do not define a
[build-system].- While the project itself will not be installed into the virtual environment, its dependencies will still be included.
- The previous behavior can be recovered by setting
package = truein the[tool.uv]section of yourpyproject.toml.
uv initno longer creates asrc/directory or defines a[build-system]by default.- The previous behavior can be recovered with
uv init --liboruv init --app --package.
- The previous behavior can be recovered with
- uv allows and recommends including
[project]definitions in virtual workspace roots.- Previously, the uv required the
[project]section to be omitted.
- Previously, the uv required the
- uv allows disabling packaging of projects, even if they define a
[build-system], by settingpackage = falsein the[tool.uv]section of yourpyproject.toml.
See the latest documentation on build systems in projects for more details.
Enhancements
- Add first-class support for non-packaged projects (#6585)
- Add
--appand--liboptions touv init(#6689) - Use
virtualsource label in lockfile for non-packaged dependencies (#6728) - Read hash from URL fragment if
--hashesare omitted (#6731) - Support
{package}@{version}inuv tool install(#6762) - Publish additional Docker tags without patch version (#6734)
Bug fixes
- Accept either strings or structs for hosts (#6763)
- Avoid including non-excluded members in parent workspaces (#6735)
- Avoid reading stale
.egg-infofrom mutable sources (#6714) - Avoid writing invalid PEP 723 scripts on
tool.uv.sources(#6706) - Compare virtual members when invalidating lockfile (#6754)
- Do not require workspace members to sync with
--frozen(#6737) - Implement deserialization for trusted host (#6716)
- Avoid showing duplicate paths in
uv python list(#6740) - Raise an error for unclosed script tags in PEP 723 scripts (#6704)
Documentation
- Add dependabot and renovate documentation page (#6236)
- Bind to the host to allow connections in FastAPI Docker example (#6753)
- Fix some broken links (#6705)
- Update FastAPI guide for virtual projects and use
uv initto create thepyproject.toml(#6752) - Update project documentation for the application / library concepts (#6718)
- Update workspace documentation to remove legacy virtual projects (#6720)
0.3.5
Enhancements
- Add support for
--allow-insecure-host(aliased to--trusted-host) (#6591) - Read requirements from
requires.txtwhen available (#6655) - Respect
tool.uv.environmentsinpip compile --universal(#6663) - Use relative paths by default in
uv add(#6686) - Improve messages for empty solves and installs (#6588)
Bug fixes
- Avoid reusing state across tool upgrades (#6660)
- Detect musl and error for musl Python builds (#6643)
- Ignore
senderrors in installer (#6667)
Documentation
- Add development section to Docker guide and reference new example project (#6666)
- Add docs for
constraint-dependenciesandoverride-dependencies(#6596) - Clarify package priority order in pip compatibility guide (#6619)
- Fix docs for disabling build isolation with
uv sync(#6674) - Improve consistency of directory lookup instructions in Docker (#6665)
- Improve lockfile concept documentation, add coverage for upgrades (#6698)
- Shift the order of some of the Docker guide content (#6664)
- Use
pythonto highlight requirements and use more content tabs (#6549)
0.3.4
CLI
- Show
--editableon theuv addCLI (#6608) - Add
--refreshtotool runwarning for--withdependencies (#6609)
Bug fixes
- Allow per dependency build isolation for
setup.py-based projects (#6517) - Avoid un-strict syncing by-default for build isolation (#6606)
- Respect
--no-build-isolation-packageinuv sync(#6605) - Respect extras and markers on virtual dev dependencies (#6620)
- Support PEP 723 scripts in GUI files (#6611)
- Update lockfile after setting minimum bounds in
uv add(#6618) - Use relative paths for
--find-linksand local registries (#6566) - Use separate types to represent raw vs. resolver markers (#6646)
- Parse wheels
WHEELandMETADATAfiles as email messages (#6616) - Support unquoted hrefs in
--find-linksand other HTML sources (#6622) - Don't canonicalize paths to user requirements (#6560)
Documentation
- Add FastAPI guide to overview (#6603)
- Add docs for disabling build isolation with
uv sync(#6607) - Add example of reading script from stdin using echo (#6567)
- Add tip to use intermediate layers in Docker builds (#6650)
- Clarify need to include
pyproject.tomlwith--no-install-project(#6581) - Move
WORKDIRdirective in Docker examples (#6652) - Remove duplicate
WORKDIRdirective in Docker example (#6651)
0.3.3
Enhancements
- Add
uv sync --no-install-projectto skip installation of the project (#6538) - Add
uv sync --no-install-workspaceto skip installation of all workspace members (#6539) - Add
uv sync --no-install-packageto skip installation of specific packages (#6540) - Show previous version in self update message (#6473)
CLI
- Add
--no-projectalias foruv python pin --no-workspace(#6514) - Ignore
.python-versionfiles inuv venvwith--no-config(#6513) - Include virtual environment interpreters in
uv python find(#6521) - Respect
-as stdin channel foruv run(#6481) - Revert changes to pyproject.toml when sync fails duing
uv add(#6526)
Configuration
- Add
UV_COMPILE_BYTECODEenvironment variable (#6530)
Bug fixes
- Set
VIRTUAL_ENVforuv runinvocations (#6543) - Ignore errors in workspace discovery with
--no-project(#6554)
Documentation
- Add documentation for
uv python find(#6527) - Add uv tool install example in Docker (#6547)
- Document why we do lower bounds (#6516)
- Fix to miss string termination in PowerShell commands for shell autocompletion documentation (#6491)
- Fix incorrect workspace members keyword (#6502)
- Use proper environment variables for Windows (#6433)
- Improve caveat in
uvxnote (#6546)
0.3.2
Configuration
- Add support for configuring
python-downloadswithUV_PYTHON_DOWNLOADS(#6436) - Add support for configuring the
python-preferencewithUV_PYTHON_PREFERENCE(#6432) - Deny invalid members in workspace schema (#6450)
Performance
- Stop streaming wheels when
METADATAis discovered (if range requests aren't supported) (#6470)
Bug fixes
- Remove URI type from JSON Schema (#6449)
- Fix retrieval of credentials for URLs from cache (#6452)
- Restore
cachesuffix on Windows cache path (#6482) - Treat
.pywfiles as scripts inuv runon Windows (#6453) - Treat invalid extras as
falsein marker evaluation (#6395) - Avoid overwriting symlinks in
pip compileoutput (#6487)
Documentation
- Add
uv runhint to theuvxguide (#6454) - Add a guide for using uv with FastAPI (#6401)
- Add tip for using
managed = falseto disable project management (#6465) - Clarify the
uv tool run,uvx, anduv runrelationships (#6455) - Fix references to
--python-downloads(it is--no-python-downloads) (#6439) - Further clarifications to the tools documentation (#6474)
- Update docs dockerfile (bullseye -> bookworm) (#6441)
- Update the installation documentation page (#6468)
- Update pip compatibility pages to mention configuration files support (#6410)
- Add
uv rundocs for gui scripts (#6478)
0.3.1
Enhancements
- Add
--with-editablesupport touv run(#6262) - Respect
.python-versionfiles andpyproject.tomlinuv python find(#6369) - Allow manylinux compatibility override via
_manylinuxmodule (#6039)
CLI
- Avoid treating
uv add -ras--raw-sources(#6287)
Bug fixes
- Always invoke found interpreter when
uv run pythonis used (#6363) - Avoid adding extra newline for script with non-empty prelude (#6366)
- Fix metadata cache instability for lockfile (#6332)
- Handle Ctrl-C properly in
uvxinvocations (#6346) - Ignore workspace discovery errors with
--no-workspace(#6328) - Invalidate
uv.lockwhen virtualdev-dependencieschange (#6291) - Make cache robust to removed archives (#6284)
- Preserve Git username for SSH dependencies (#6335)
- Respect
--no-build-isolationinuv add(#6368) - Respect
.python-versionfiles inuv runoutside projects (#6361) - Use
sys_executableforuv runinvocations (#6354) - Use atomic write for
pip compileoutput (#6274) - Use consistent logic for deserializing short revisions (#6341)
Documentation
- Remove the preview default value of
python-preference(#6301) - Update env vars doc about
XDG_*variables on macOS (#6337)
0.3.0
This release introduces the uv project, tool, script, and python interfaces. If you've been following uv's development, you've probably seen these new commands behind a preview flag. Now, the interfaces are stable and ready for production-use.
These features are all documented in new, comprehensive documentation.
This release also stabilizes preview functionality in uv venv:
uv venv --python <version>will automatically download the Python version if requireduv venvwill read the required Python version from the.python-versionfile orpyproject.toml
The uv pip interface should not be affected by any breaking changes.
Note the following changelog entries does not include all the new features since they were added incrementally as preview features. See the feature page in the documentation for a comprehensive listing, or read the blog post for more context on the new features.
Breaking changes
- Migrate to XDG and Linux strategy for macOS directories (#5806)
- Move concurrency settings to top-level (#4257)
- Apply system Python filtering to executable name requests (#4309)
- Remove
--legacy-setup-pycommand-line argument (#4255) - Stabilize preview features (#6166)
Enhancements
- Add 32-bit Windows target (#6252)
- Add support for
python_version in ...markers (#6172) - Allow user to constrain supported lock environments (#6210)
- Lift requirement that .egg-info filenames must include version (#6179)
- Change "any of" to "all of" in error messages (#6222)
- Collapse redundant dependency clauses enumerating available versions (#6160)
- Collapse unavailable packages in resolver errors (#6154)
- Fix messages for unavailable packages when range is plural (#6221)
- Improve resolver error messages when
--offlineis used (#6156) - Avoid overwriting dependencies with different markers in
uv add(#6010) - Simplify available package version ranges when the name includes markers or extras (#6162)
- Simplify version ranges reported for unavailable packages (#6155)
- Rename
environment-markerstoresolution-markers(#6240) - Support
uv add -r requirements.txt(#6005)
CLI
- Hide global options in
uv generate-shell-completion(#6170) - Show generate-shell-completion command in
uv help(#6180) - Special-case reinstalls in environment update summaries (#6243)
- Add output when
uv addanduv removeupdate scripts (#6231) - Add support for
package@latestintool run(#6138) - Show
python findoutput with-q(#6256) - Warn when
--upgradeis passed totool run(#6140)
Configuration
- Allow customizing the tool install directory with
UV_TOOL_BIN_DIR(#6207)
Performance
- Use
FxHashinuv-auth(#6149)
Bug fixes
- Avoid panicking when the resolver thread encounters a closed channel (#6182)
- Respect release-only semantics of
python_full_versionwhen constructing markers (#6171) - Tolerate missing
[project]table inuv venv(#6178) - Avoid using workspace
lock_pathas relative root (#6157)
Documentation
- Preview changes are now included in the standard changelog (#6259)
- Document dynamic metadata behavior for cache (#5993)
- Document the effect of ordering on package priority (#6211)
- Make some edits to the workspace concept documentation (#6223)
- Update environment variables doc (#5994)
- Disable collapsible navigation in the documentation (#5674)
- Document
uv addanduv removebehavior with markers (#6163) - Document the Python installation directory (#6227)
- Document the
uv.pipsection semantics (#6225) - Document the cache directory (#6229)
- Document the tools directory (#6228)
- Document yanked packages caveat during sync (#6219)
- Link to persistent configuration options in Python versions document (#6226)
- Link to the projects concept from the dependencies concept (#6224)
- Improvements to the Docker installation guide (#6216)
- Increase the size of navigation entries (#6233)
- Install
ca-certificatesin docker and use pipefail (#6208) - Add script support to feature highlights in index (#6251)
- Show
uv generate-shell-completionin CLI documentation reference (#6146) - Update Docker guide for projects (#6217)
- Use
uv add --scriptin guide (#6215) - Show pinned version example on in GitHub Actions integration guide (#6234)
0.2.37
Performance
- Avoid cloning requirement for unchanged markers (#6116)
Bug fixes
- Fix loading of cached metadata for Git distributions with subdirectories (#6094)
Error messages
- Add env var to
--link-mode=copywarning (#6103) - Avoid displaying "failed to download" on build failures for local source distributions (#6075)
- Improve display of available package ranges (#6118)
- Use "your requirements" consistently in resolver error messages (#6113)
Preview features
- Add
python-version-fileto GitHub integration documentation (#6086) - Always narrow markers by Python version (#6076)
- Avoid warning for redundant
--no-project(#6111) - Change the definition of
--lockedto require satisfaction check (#6102) - Improve debug log for interpreter requests during project commands (#6120)
- Improve display of resolution errors for workspace member conflicts with optional dependencies (#6123)
- Improve resolver error messages for single-project workspaces (#6095)
- Improve resolver error messages referencing workspace members (#6092)
- Invalidate
uv.lockif registry sources are removed (#6026) - Propagate fork markers to extras (#6065)
- Redact Git credentials from
pyproject.toml(#6074) - Redact Git credentials in lockfile (#6070)
- Remove 'tool' reference on
uv runCLI (#6110) - Remove
same-graphmerging in resolver (#6077) - Strip SHA when constructing package source (#6097)
- Treat Git sources as immutable in lockfile (#6109)
- Use the proper singular form for workspace member dependencies in resolver errors (#6128)
- Use sets rather than vectors for lockfile requirements (#6107)
- Normalize
python_versionmarkers topython_full_version(#6126) - Update Pythons to include Python 3.12.5 (#6087)
0.2.36
Bug fixes
- Use consistent canonicalization for URLs (#5980)
- Improve warning message when parsing
pyproject.tomlfails (#6009) - Improve handling of overlapping markers in universal resolver (#5887)
Preview features
- Add resolver error context to
runandtool run(#5991) - Avoid replacing executables on no-op upgrades (#5998)
- Colocate Python install cache with destination directory (#6043)
- Filter mixed sources from
--find-linksentries in lockfile (#6025) - Fix some outdated documentation discussing Python environments (#6058)
- Fix projects guide typo (#6033)
- Fix tools guide typo (#6027)
- Hide python options in
uv tool listhelp (#6003) - Improve top-level help for
uv toolcommands (#5983) - Move help documentation into dedicated page (#6057)
- Remove
editable: falsesupport (#5987) - Remove uses of
Option<MarkerTree>inResolutionGraph(#6035) - Resolve relative
tool.uv.sourcesrelative to containing project (#6045) - Support PEP 723 scripts in
uv addanduv remove(#5995) - Support
tool.uvin PEP 723 scripts (#5990) - Treat local indexes as registry sources in lockfile (#6016)
- Use simplified paths in lockfile (#6049)
- Use upgrade-specific output for tool upgrade (#5997)
0.2.35
CLI
- Deprecate
--systemand--no-systeminuv venv(#5925) - Make
--upgradeimply--refresh(#5943) - Warn when there are missing bounds on transitive dependencies
with
--resolution-strategy lowest(#5953)
Configuration
- Add support for
no-build-isolation-package(#5894)
Performance
- Enable LTO optimizations in release builds to reduce binary size (#5904)
- Prefetch metadata in
--no-depsmode (#5918)
Bug fixes
- Display portable paths in POSIX virtual environment activation commands (#5956)
- Respect subdirectories when locating Git workspaces (#5944)
Documentation
- Improve the
uv venvCLI documentation (#5963)
Preview features
- Add CLI flags to reference documentation (#5926)
- Add
updatealias foruv tool upgrade(#5948) - Add caveat about pip interface name (#5940)
- Add hint for long help to
uvx(#5971) - Avoid requires-python warning in virtual-only workspace (#5895)
- Discard forks when using
--upgrade(#5905) - Document the
tool upgradecommand (#5947) - Document virtual environment discovery (#5965)
- Enable mirror for
python-build-standalonedownloads (#5719) - Fix reuse of Git commits in lockfile (#5908)
- Ignore local configuration in tool commands (#5923)
- Improve the CLI documentation for
uv add(#5914) - Improve the CLI documentation for
uv remove(#5916) - Improve the
uv lockCLI documentation (#5932) - Improve the
uv pythonCLI documentation (#5961) - Improve the
uv syncCLI documentation (#5930) - Improve the
uv treeCLI documentation (#5917) - Fix link to tools concept page (#5906)
- Add
uv tool upgradecommand (#5197) - Implement marker trees using algebraic decision diagrams (#5898)
- Make repeated
uv addoperations simpler (#5922) - Move some documents to relevant sections (#5968)
- Rename
distributiontopackagesin lockfile (#5861) - Respect
--upgrade-packagein tool install (#5941) - Respect
--upgrade-packagewhen resolving from lockfile (#5907) - Retain and respect settings in tool upgrades (#5937)
- Search beyond workspace root when discovering configuration (#5931)
- Show build and install summaries in
uv runanduv tool run(#5899) - Support relative path wheels (#5969)
- Update the interface for declaring Python download preferences (#5936)
- Use cached environments for
--withlayers (#5897) - Warn when project-specific settings are passed to non-project
uv runcommands (#5977)
0.2.34
Enhancements
- Always strip in release mode (#5745)
- Assume
git+prefix when URLs end in.git(#5868) - Support build constraints (#5639)
CLI
- Create help sections for build, install, resolve, and index (#5693)
- Improve CLI documentation for global options (#5834)
- Improve
--pythonCLI documentation (#5869) - Improve display order of top-level commands (#5830)
Bug fixes
- Allow downloading wheels for metadata with
--no-binary(#5707) - Reject
pyproject.tomlin--config-file(#5842) - Remove double-proxy nodes in error reporting (#5738)
- Respect pre-release preferences from input files (#5736)
- Support overlapping local and non-local requirements in forks (#5812)
Preview features
- Add "next steps" to some early documentation pages (#5825)
- Add
--no-build-isolationto uv lock et al (#5829) - Add
--no-sourcesto avoid reading fromtool.uv.sources(#5801) - Add
uv add --no-syncanduv remove --no-sync(#5881) - Add a guide for publishing packages (#5794)
- Address some feedback in the tools documentation (#5827)
- Avoid lingering dev and optional dependencies in
uv tree(#5766) - Avoid mismatch in
--lockedwith Git dependencies (#5865) - Avoid panic when re-locking with precise commit (#5863)
- Avoid using already-installed tools on
--upgradeor--reinstall(#5799) - Better workspace documentation (#5728)
- Collapse policies section into reference (#5696)
- Don't show deprecated warning in
uvx --isolated(#5798) - Ensure
python-to-pythonX.Ysymlink exists in downloaded Pythons (#5849) - Fix CLI reference URLs to subcommands (#5722)
- Fix some console blocks in the environment doc (#5826)
- Group resolver options in lockfile (#5853)
- Improve CLI documentation for
uv tree(#5870) - Improve documentation for
uv initCLI (#5862) - Improvements to the documentation (#5718)
- Link to the GitHub integration guide from the cache concept (#5828)
- Make some minor tweaks to the docs (#5786)
- Omit local segments when adding uv add bounds (#5753)
- Remove top-level bar from Python installs (#5788)
- Replace
uv help pythonreferences in CLI documentation with links (#5871) - Respect
.python-versionin--isolatedruns (#5741) - Respect malformed
.dist-infodirectories in tool installs (#5756) - Reuse existing virtualenvs with
--no-project(#5846) - Rewrite resolver docs (#5723)
- Show default and possible options in CLI reference documentation (#5720)
- Skip files when detecting workspace members (#5735)
- Support empty dependencies in PEP 723 scripts (#5864)
- Support uv add
--devin virtual workspaces (#5821) - Update documentation index (#5824)
- Update resolver reference documentation (#5823)
- Update the override section with some content from the README (#5820)
- Update the resolution concept documentation (#5813)
- Use cache for Python install temporary directories (#5787)
- Use lockfile directly in
uv tree(#5761) - Use uv installer during build (#5854)
- Filter
uv treeto current platform by default (#5763) - Redact registry credentials in lockfile (#5803)
- Show extras and dev dependencies in
uv tree(#5768) - Support
--python-platforminuv tree(#5764) - Add help heading for
--no-sources(#5833) - Avoid reusing incompatible distributions across lock and sync (#5845)
- Fix broken anchor links in docs about dependencies (#5769)
- Fix the default value of python-preference in docs/reference/settings.md (#5755)
- Improve CLI documentation for
uv run(#5841) - Remove some trailing backticks from the docs (#5781)
- Use
uvxin docs serve contributing command (#5795)
0.2.33
Enhancements
- Add support for
kshto relocatable virtual environments (#5640)
CLI
- Add help sections for global options (#5665)
- Move
--pythonand--python-versioninto the "Python options" help (#5691) - Show help specific options (i.e.
--no-pager) inuv help(#5516) - Update top-level command descriptions (#5706)
Bug fixes
- Remove lingering executables after failed installs (#5666)
- Switch from heuristic freshness lifetime to hard-coded value (#5654)
Documentation
- Don't use equals signs for CLI options with values (#5704)
Preview features
- Add
--packagetouv sync(#5656) - Add documentation for caching the uv cache in GHA (#5663)
- Avoid persisting
uv addcalls that result in resolver errors (#5664) - Bold active nav links for accessibility (#5673)
- Check idempotence in packse lock scenarios (#5485)
- Detect python version from python project by default in
uv venv(#5592) - Drop badges from docs landing (#5617)
- Fix non-registry serialization for receipts (#5668)
- Generate CLI reference for documentation (#5685)
- Improve copy of console command examples (#5397)
- Improve the project guide (#5626)
- Improve the Python version concepts documentation (#5638)
- Improve the dependency concept documentation (#5658)
- Include newly-added optional dependencies in lockfile (#5686)
- Initialize the cache in
uv init(#5669) - Limit sync after
uv add(#5705) - Move pip-compatibility doc into pip interface section (#5670)
- Move settings reference to reference section (#5689)
- Omit the nav bar title when it has no use (#5316)
- Omit transitive development dependencies from workspace lockfile (#5646)
- Prioritize forks based on Python narrowing (#5642)
- Prioritize forks based on upper bounds (#5643)
- Prompt an early jump to the feature overview during first steps (#5655)
- Remove breadcrumbs for navigation (#5676)
- Replace
--python-preference installedwithmanaged(#5637) - Set lower bounds in
uv add(#5688) - Simplify GHA
UV_SYSTEM_PYTHONexamples (#5659) - Support legacy tool receipts with PEP 508 requirements (#5679)
- Unhide the experimental top-level commands (#5700)
- Use "uv" for title of index instead of "Introduction" (#5677)
- Use fork markers and fork preferences in resolution with lockfile (#5481)
- Use full requirement when serializing receipt (#5494)
- Use intersection rather than union for
requires-python(#5644) uvxwarn when no executables are available (#5675)
0.2.32
Enhancements
- Deprecate the
--isolatedflag in favor of--no-config(#5466) - Re-enable
requires-pythonnarrowing in forks (#5583)
Performance
- Skip copying to empty entries in seekable zip (#5571)
- Use a consistent buffer size for downloads (#5569)
- Use a consistent buffer size when writing out zip files (#5570)
Bug fixes
- Avoid setting executable permissions on files we might not own (#5582)
- Statically link liblzma (#5577)
Preview features
- Implement
uv run --directory(#5566) - Add
--isolatedsupport touv run(#5471) - Add
--no-workspaceand--no-projectin lieu of--isolated(#5465) - Add documentation for cache clearing (#5517)
- Add forks to lockfile, don't read them yet (#5480)
- Add links to documentation footer (#5616)
- Error when multiple git references are provided in
uv add(#5502) - Improvements to the project concept docs (#5634)
- List installed tools when no command is provided to
uv tool run(#5553) - Make
--directorya global argument (#5579) - Reframe use of
--isolatedintool run(#5470) - Remove
--isolatedusages from theuv pythonAPI (#5468) - Rename more use of "lock file" to "lockfile" (#5629)
- Suppress resolver output by default in
uv runanduv tool run(#5580) - Wrap documentation at 100 characters (#5635)
0.2.31
Enhancements
- Add
--relocatableflag touv venv(#5515) - Support
xz-compressed packages (#5513) - Warn, but don't error, when encountering tilde
.dist-infodirectories (#5520)
Bug fixes
- Make
pip list --editableconflict with--exclude-editable(#5506) - Add some missing reinstall-refresh calls (#5497)
- Avoid warning users for missing self-extra lower bounds (#5518)
- Generate hashes for
--find-linksentries (#5544) - Retain editable designation for cached wheel installs (#5545)
- Use 666 rather than 644 for default permissions (#5498)
- Retry on incomplete body (#5555)
- Ban
--no-cachewith--link-mode=symlink(#5519)
Preview features
- Allow
uv pip installfor unmanaged projects (#5504) - Compare simplified paths in Windows exclusion tests (#5525)
- Respect reinstalls in cached environments (#5499)
- Use
hatchlingrather than implicitsetuptoolsdefault (#5527) - Use relocatable installs to support concurrency-safe cached environments (#5509)
- Support
--editableinstalls foruv tool(#5454) - Fix basic case of overlapping markers (#5488)
0.2.30
Enhancements
CLI
Bug fixes
- Avoid canonicalizing executables on Windows (#5446)
- Set standard permissions for temporary files (#5457)
Preview features
- Allow distributions to be absent in deserialization (#5453)
- Merge identical forks (#5405)
- Minor consistency fixes for code blocks (#5437)
- Prefer "lockfile" to "lock file" (#5427)
- Update documentation sections (#5452)
- Use
sitecustomize.pyto implement environment layering (#5462) - Use stripped variants by default in Python install (#5451)
0.2.29
Enhancements
- Add
--cimode touv cache prune(#5391) - Display Python installation key for discovered interpreters (#5365)
Bug fixes
- Allow symlinks to files in scripts directory (#5380)
- Always accept already-installed pre-releases (#5419)
- Validate successful metadata fetch for direct dependencies (#5392)
Documentation
- Add warning to
--link-mode=symlinkdocumentation (#5387)
Preview features
- Add PyPy finder (#5337)
- Add
uv init --virtual(#5396) - Allow
uv initin unmanaged projects (#5372) - Allow comments in
.python-version[s](#5350) - Always show lock updates in
uv lock(#5413) - Improvements to the docs content (#5426)
- Fix blurring from nav title box shadow (#5374)
- Ignore Ctrl-C signals in
uv runanduv tool run(#5395) - Ignore hidden directories in workspace discovery (#5408)
- Increase padding between each nav section (#5373)
- Mark
--raw-sourcesas conflicting with sources-specific arguments (#5378) - Omit empty uv.tool.dev-dependencies on
uv init(#5406) - Omit interpreter path during
uv venvwith managed Python (#5311) - Omit interpreter path from output when using managed Python (#5313)
- Reject Git CLI arguments with non-Git sources (#5377)
- Retain dependency specifier in
uv addwith sources (#5370) - Show additions and removals in
uv lockupdates (#5410) - Skip 'Nothing to uninstall' message when removing dangling environments (#5382)
- Support
requirements.txtfiles inuv tool installanduv tool run(#5362) - Use env variables in Github Actions docs (#5411)
- Use logo in documentation (#5421)
- Warn on
requirements.txt-provided arguments inuv runet al (#5364)
0.2.28
Enhancements
- Output stable ordering to
requirements.txtin universal mode (#5334) - Allow symlinks with
--find-links(#5323) - Add support for variations of
pythonw.exe(#5259)
CLI
- Stylize
Requires-Pythonconsistently in CLI output (#5304) - Add
--show-version-specifierstotree(#5240)
Performance
- Avoid always rebuilding dynamic metadata (#5206)
- Avoid URL parsing when deserializing wheels (#5235)
Bug fixes
- Avoid cache prune failure due to removed interpreter (#5286)
- Avoid including empty extras in resolution (#5306)
- If multiple indices contain the same version, use the first index (#5288)
- Include URLs on graph edges (#5312)
- Match wheel tags against
Requires-Pythonmajor-minor (#5289) - Remove Simple API cache files for alternative indexes
in
cache clean(#5353) - Remove extraneous
arefrom wheel tag error messages (#5303) - Allow conflicting pre-release strategies when forking (#5150)
- Use tag error rather than requires-python error for ABI filtering (#5296)
Preview features
- Add
requires-pythontouv init(#5322) - Add
uv add --no-editable(#5246) - Add constraint dependencies to pyproject.toml (#5248)
- Add support for requirements files in
uv run(#4973) - Avoid redundant members update in
uv init(#5321) - Create member
pyproject.tomlprior to workspace discovery (#5317) - Fix
uv init .(#5330) - Fix
uv initcreation of a sub-package by path (#5247) - Fix colors in
uv tool runsuggestion (#5267) - Improve consistency of
toolCLI (#5326) - Make tool install robust to malformed receipts (#5305)
- Reduce spacing between nav items (#5310)
- Respect exclusions in
uv init(#5318) - Store resolution options in lockfile (#5264)
- Use backticks in project init message (#5302)
- Ignores workspace when
--isolatedflag is used inuv init(#5290) - Normalize directory names in
uv init(#5292) - Avoid project discovery in
uv python pinif--isolatedis provided (#5354) - Show symbolic links in
uv python list(#5343) - Discover workspace from target path in
uv init(#5250) - Do not create nested workspace in
uv init(#5293)
0.2.27
Enhancements
- Add GraalPy support (#5141)
- Add a
--verify-hasheshash-checking mode (#4007) - Discover all
python3.xexecutables in thePATH(#5148) - Support
--link-mode=symlink(#5208) - Warn about unconstrained direct deps in lowest resolution (#5142)
- Log origin of version selection (#5186)
- Key hash policy on version, rather than package (#5169)
CLI
- Make missing project table a tracing warning (#5194)
- Remove trailing period from user-facing messages (#5218)
Bug fixes
- Make entrypoint writes atomic to avoid overwriting symlinks (#5165)
- Use
which-retrieved path directly when spawning pager (#5198) - Don't apply irrelevant constraints when validating site-packages (#5231)
- Respect local versions for all user requirements (#5232)
Preview features
- Add
--frozentouv add,uv remove, anduv tree(#5214) - Add
--lockedand--frozentouv runCLI (#5196) - Add
uv tool dir --binto show executable directory (#5160) - Add
uv tool list --show-pathsto show install paths (#5164) - Add color to
python pinCLI (#5215) - Added a way to inspect installation scripts on Powershell( Windows) (#5157)
- Avoid TOCTOU errors in
.python-versionreads (#5223) - Only show the Python installed on the system if
--python-preference only-systemis specified (#5219) - Check
python pincompatibility withRequires-Python(#4989) - Enforce hashes in lockfile install (#5170)
- Fix reference to
uv runinuv treeCLI (#5216) - Handle universal vs. fork markers with
ResolverMarkers(#5099) - Implement
uv init(#4791) - Make Python install robust to individual failures (#5199)
- Make registry hashes optional in the lockfile (#5166)
- Merge extras in lockfile (#5181)
- Move integration guide docs and edit Azure integration guide (#5117)
- Process completed Python installs and uninstalls as a stream (#5203)
- Skip invalid tools in
uv tool list(#5156) - Touch-ups to tools guide (#5202)
- Use +- install output for Python versions (#5201)
- Use display representation for download error (#5173)
- Use specialized error message for invalid Python install / uninstall requests (#5171)
- Use the strongest hash in the lockfile (#5167)
- Write project guide (#5195)
- Write tools concept document (#5207)
- Fix reference to
projects.md(#5154) - Fixes to the settings documentation (#5177)
- Set exact version specifiers when resolving from lockfile (#5193)
0.2.26
CLI
- Add
--no-progressglobal option to hide all progress animations (#5098)
Performance
- Cache downloaded wheel when range requests aren't supported (#5089)
Bug fixes
- Download wheel to disk when streaming unzip failed with HTTP streaming error (#5094)
- Filter out invalid wheels based on
requires-python(#5084) - Filter out none ABI wheels with mismatched Python versions (#5087)
- Lock Git cache on resolve (#5051)
- Change order of
pip compilecommand checks to handle exact argument first (#5111)
Documentation
- Document that
--universalimplies--no-strip-markers(#5121)
Preview features
- Indicate that
uv lock --upgradehas updated the lock file (#5110) - Sort managed Python installations by version (#5140)
- Support workspace to workspace path dependencies (#4833)
- Allow conflicting locals when forking (#5104)
- Rework
pyproject.tomlreformatting to respect original indentation (#5075)
0.2.25
Enhancements
- Include PyPy-specific executables when creating virtual environments
with
uv venv(#5047) - Add a custom error message for
--no-build-isolationtorchdependencies (#5041) - Improve missing
wheelerror message with--no-build-isolation(#4964)
CLI
- Add
--no-pageroption inhelpcommand (#5007) - Unhide
--isolatedglobal argument (#5005) - Warn when unused
pyproject.tomlconfiguration is detected (#5025)
Bug fixes
- Fall back to streaming wheel when
Content-Lengthheader is absent (#5000) - Fix substring marker expression disjointness checks (#4998)
- Lock directories to synchronize wheel-install copies (#4978)
- Normalize out complementary == or != markers (#5050)
- Retry on permission errors when persisting extracted source distributions to the cache (#5076)
- Set absolute URLs prior to uploading to PyPI (#5038)
- Exclude
--upgrade-packagefrom thepip compileheader (#5032) - Exclude
--upgrade-packagewhen option and value are passed as a single argument (#5033) - Add split to cover marker universe when existing splits are incomplete (#5074)
- Use correct
pyproject.tomlpath in warnings (#5069)
Documentation
- Fix
CONTRIBUTING.mdinstructions to install multiple Python versions (#5015) - Use versioned badges when uploading to PyPI (#5039)
Preview features
- Add documentation for running scripts (#4968)
- Add guide for tools (#4982)
- Allow URL dependencies in tool run
--from(#5002) - Add guide for authenticating to Azure Artifacts (#4857)
- Improve rc file detection based on rustup (#5026)
- Rename
python install --forceparameter to--reinstall(#4999) - Use lockfile to prefill resolver index (#4495)
uv tool installhint the correct when the executable is available (#5019)uv tool runerror messages referencesuvxwhen appropriate (#5014)uvxwarns when requested executable is not provided by the package #5071)- Exit with zero when
uv tool installrequest is already satisfied (#4986) - Respect the libc of the execution environment
with
uv python list(#5036) - Update standalone Pythons to include 3.12.4 (#5042)
uv tool runsuggest valid commands when command is not found (#4997)- Add Windows path updates for
uv tool(#5029) - Add a command to append uv's binary directory to PATH (#4975)
0.2.24
Enhancements
- Add support for 'any' Python requests (#4948)
- Allow constraints to be provided in
--upgrade-package(#4952) - Add
manylinux_2_31to supported--python-platform(#4965) - Improve marker simplification (#4639)
CLI
- Display short help menu when
--helpis used (#4772) - Allow
uv helpglobal options duringuv help(#4906) - Use paging for
uv helpdisplay when available (#4909)
Performance
- Switch to single threaded async runtime (#4934)
Bug fixes
- Avoid AND-ing multi-term specifiers in marker normalization (#4911)
- Avoid inferring package name for GitHub Archives (#4928)
- Retry on connection reset network errors (#4960)
- Apply extra to overrides and constraints (#4829)
Rust API
- Allow
uvcrate to be used as a library (#4642)
Preview features
- Add Python installation guide (#4942)
- Add
uv python pin(#4950) - Add command-separation for Python discovery display (#4916)
- Avoid debug error for
uv runwith unknown Python version (#4913) - Enable
--allto uninstall all managed Pythons (#4932) - Enable
--allto uninstall all managed tools (#4937) - Filter out markers based on Python requirement (#4912)
- Implement
uv tree(#4708) - Improve 'any' search message during
uv python install(#4940) - Lock for the duration of tool commands (#4720)
- Perform lock in
uv syncby default (#4839) - Reinstall and recreate environments when interpreter is removed (#4935)
- Respect
--isolatedinuv python install(#4938) - Respect resolver settings in
uv remove(#4930) - Update "Python versions" documentation (#4943)
- Warn if tool binary directory is not on path (#4951)
- Avoid reparsing wheel URLs (#4947)
- Avoid serializing if lockfile does not change (#4945)
0.2.23
Enhancements
- Update Windows trampoline binaries (#4864)
- Show user-facing warning when falling back to copy installs (#4880)
Bug fixes
- Initialize all
--prefixsubdirectories (#4895) - Respect
requires-pythonwhen prefetching (#4900) - Partially revert
Requires-Pythonversion narrowing (#4902)
Preview features
- Avoid creating cache directories in tool directory (#4868)
- Add progress bar when downloading python (#4840)
- Add some decoration to tool CLI (#4865)
- Add some text decoration to toolchain CLI (#4882)
- Add user-facing output to indicate PEP 723 script (#4881)
- Ensure Pythons are aligned in
uv python list(#4884) - Fix always-plural message in uv python install (#4866)
- Skip installing
--withrequirements if present in base environment (#4879) - Sort dependencies before wheels and source distributions (#4897)
- Improve logging during resolver forking (#4894)
0.2.22
CLI
- Add
--exclude-newerto installer arguments (#4785) - Bold durations in CLI messages (#4818)
- Drop crate description from the
uvhelp menu (#4773) - Update "about" in help menu (#4782)
Configuration
- Add
UV_OVERRIDEenvironment variable for--override(#4836)
Bug fixes
- Always use release-only comparisons for
requires-python(#4794) - Avoid hangs before exiting CLI (#4793)
- Preserve verbatim URLs for
--find-links(#4838)
Preview features
- Always use base interpreter for cached environments (#4805)
- Cache tool environments in
uv tool run(#4784) - Check hash of downloaded python toolchain (#4806)
- Remove incompatible wheels from
uv.lock(#4799) uv cache pruneremoves all cached environments (#4845)- Add dedicated help menu for
uvx(#4770) - Change "toolchain" to "python" (#4735)
- Create empty environment for
uv run --isolated(#4849) - Deduplicate when install or uninstall python (#4841)
- Require at least one target for toolchain uninstalls (#4820)
- Resolve requirements prior to nuking tool environments (#4788)
- Tweak installation language in toolchain install (#4811)
- Use already-installed tools in
uv tool run(#4750) - Use cached environments in PEP 723 execution (#4789)
- Use optimized versions of managed Python on Linux (#4775)
- Fill Python requests with platform information during automatic fetches (#4810)
- Remove installed python for force installation (#4807)
- Add tool version to list command (#4674)
- Add entrypoints to tool list (#4661)
0.2.21
- Fix issue where standalone installer failed to due missing
uvx.exebinary on Windows (#4756)
CLI
- Differentiate
freezeandlisthelp text (#4751)
Preview features
- Replace tool environments on updated Python request (#4746)
0.2.20
- Fix issue where the standalone installer failed due to a missing
uvxbinary (#4743)
0.2.19
Enhancements
- Indicate when we retried requests during network errors (#4725)
CLI
- Add
--disable-pip-version-checkto compatibility arguments (#4672) - Allow
uv pip syncto clear an environment with opt-in (#4517) - Add
--inverttouv pip tree(#4621) - Omit
(*)inuv pip treefor empty packages (#4673) - Add
--packagetouv pip tree(#4655)
Bug fixes
- Fix bug where git cache did not validate commits correctly (#4698)
- Narrow
requires-pythonrequirement in resolver forks (#4707) - Fix bug when pruning the last package in
uv pip tree(#4652)
Preview features
- Remove dangling environments in
uv tool uninstall(#4740) - Respect upgrades in
uv tool install(#4736) - Add PEP 723 support to
uv run(#4656) - Add
tool dirandtoolchain dircommands (#4695) - Omit
pythonX.Ysegment in stdlib path for managed toolchains on Windows (#4727) - Add
uv toolchain uninstall(#4646) - Add
uvxalias foruv tool run(#4632) - Allow configuring the toolchain fetch strategy (#4601)
- Drop
preferprefix fromtoolchain-preferencevalues (#4602) - Enable projects to opt-out of workspace management (#4565)
- Fetch managed toolchains if necessary in
uv tool installanduv tool run(#4717) - Fix tool dist-info directory normalization (#4686)
- Lock the toolchains directory during toolchain operations (#4733)
- Log when we start solving a fork (#4684)
- Reinstall entrypoints with
--force(#4697) - Respect data scripts in
uv tool install(#4693) - Set fork solution as preference when resolving (#4662)
- Show dedicated message for tools with no entrypoints (#4694)
- Support unnamed requirements in
uv tool install(#4716)
0.2.18
CLI
- Make
--universaland--python-platformmutually exclusive (#4598) - Add
--depthand--prunesupport topip tree(#4440)
Bug fixes
- Handle cycles when propagating markers (#4595)
- Ignore
pynot found errors during interpreter discovery (#4620) - Merge markers when applying constraints (#4648)
- Retry on spurious failures when caching built wheels (#4605)
- Sort indexes during graph edge removal (#4649)
- Treat Python version as a lower bound in
--universal(#4597) - Fix the incorrect handling of markers in
pip tree(#4611) - Improve toolchain and environment missing error messages (#4596)
Documentation
- Explicitly mention use of seed packages during
uv venv --seed(#4588)
Preview features
- Add
uv tool list(#4630) - Add
uv tool uninstall(#4641) - Add support for specifying
name@versioninuv tool run(#4572) - Allow
uv addto specify optional dependency groups (#4607) - Allow the package spec to be passed positionally
in
uv tool install(#4564) - Avoid infinite loop for cyclic installs (#4633)
- Indent wheels like dependencies in the lockfile (#4582)
- Sync all packages in a virtual workspace (#4636)
- Use inline table for dependencies in lockfile (#4581)
- Make
sourcefield in lock file more structured (#4627)
0.2.17
Bug fixes
- Avoid enforcing extra-only constraints (#4570)
Preview features
- Add
--extratouv addand enable fine-grained updates (#4566)
0.2.16
Enhancements
- Add a universal resolution mode to
uv pip compilewith--universal(#4505) - Add support for
--no-strip-markersinuv pip compileoutput (#4503) - Add
--no-dedupesupport touv pip tree(#4449)
Bug fixes
- Enable more precise environment locking with
--prefix(#4506) - Allow local index references in
requirements.txtfiles (#4525) - Allow non-
file://paths to serve as--index-urlvalues (#4524) - Make
.egg-infofilename parsing spec compliant (#4533) - Gracefully handle non-existent packages in local indexes (#4545)
- Read content length from response rather than request (#4488)
- Read persistent configuration from non-workspace
pyproject.toml(#4526) - Avoid panic for invalid, non-base index URLs (#4527)
Performance
- Skip submodule update for fresh clones (#4482)
- Use shared client in Git fetch implementation (#4487)
Preview features
- Add
--packageargument touv addanduv remove(#4556) - Add
uv tool install(#4492) - Fallback to interpreter discovery in
uv run(#4549) - Make
uv.sourceswithout--previewnon-fatal (#4558) - Remove non-existent extras from lockfile (#4479)
- Support conflicting URL in separate forks (#4435)
- Automatically detect workspace packages in
uv add(#4557) - Omit
distribution.sdistfrom lockfile when it is redundant (#4528) - Remove
sourceandversionfrom lock file when unambiguous (#4513) - Allow
uv lockto read overrides fromtool.uv(#4108) (#4369)
0.2.15
Enhancements
- Add
--emit-build-optionsflag touv pip compileinterface (#4463) - Add
pythonwsupport for gui scripts on Windows (#4409) - Add
uv pip tree(#3859)
CLI
Bug fixes
- Fix ordering of prefer-system toolchain preference (#4441)
- Respect index strategy in source distribution builds (#4468)
Documentation
- Add documentation for using uv in a Docker image (#4433)
0.2.14
Enhancements
- Support toolchain requests with platform-tag style Python implementations and version (#4407)
CLI
- Use "Prepared" instead of "Downloaded" in logs (#4394)
Bug fixes
- Treat mismatched directory and file urls as unsatisfied requirements (#4393)
Preview features
- Expose
toolchain-preferenceas a CLI and configuration file option (#4424) - Improve handling of command arguments in
uv runanduv tool run(#4404) - Add
tool.uv.sourcessupport foruv add(#4406) - Use correct lock path for workspace dependencies (#4421)
- Filter out sibling dependencies in resolver forks (#4415)
0.2.13
Enhancements
- Add resolver tracing logs for when we filter requirements (#4381)
Preview features
- Add
--workspaceoption touv add(#4362) - Ignore query errors during
uv toolchain list(#4382) - Respect
.python-versionfiles and fetch manged toolchains in uv project commands (#4361) - Respect
.python-versioninuv venv --preview(#4360)
0.2.12
Enhancements
- Allow specific
--only-binaryand--no-binarypackages to override:all:(#4067) - Flatten ORs and ANDs in marker construction (#4260)
- Skip invalid interpreters when searching for requested interpreter executable name (#4308)
- Display keyring stderr during queries (#4343)
- Allow discovery of uv binary relative to package root (#4336)
- Use relative path for
lib64symlink (#4268)
CLI
- Add uv version to debug output (#4259)
- Allow
--no-binarywithuv pip compile(#4301) - Hide
--no-systemfrom the CLI (#4292) - Make
--reinstall,--upgrade, and--refreshshared arguments (#4319)
Configuration
- Add
UV_EXCLUDE_NEWERenvironment variable (#4287)
Bug fixes
- Allow normalization to completely eliminate markers (#4271)
- Avoid treating direct path archives as always dynamic (#4283)
- De-duplicate markers during normalization (#4263)
- Fix incorrect parsing of requested Python version as empty version specifiers (#4289)
- Suggest correct command to create a virtual environment when encountering externally managed interpreters (#4314)
- Use consistent order for extra groups in lockfile (#4275)
Documentation
- Add
pip-compiledefaults toPIP_COMPATIBILITY.md(#4302) - Expand on
pip-compiledefault differences (#4306) - Tweak copy on some command-line arguments (#4293)
- Move the preview changelog so the GitHub Release shows stable changes (#4290)
Preview features
- Add
--forceoption touv toolchain install(#4313) - Add
--no-build,--no-build-package, and binary variants (#4322) - Add
EXTERNALLY-MANAGEDmarkers to managed toolchains (#4312) - Add
uv toolchain find(#4206) - Add persistent configuration for non-
pipAPIs (#4294) - Add support for adding/removing development dependencies (#4327)
- Add support for listing system toolchains (#4172)
- Add support for toolchain requests by key (#4332)
- Allow multiple toolchains to be requested
in
uv toolchain install(#4334) - Fix relative and absolute path handling in lockfiles (#4266)
- Load configuration options from workspace root (#4295)
- Omit project name from workspace errors (#4299)
- Read Python version files during toolchain installs (#4335)
- Remove extraneous installations in
uv syncby default (#4366) - Respect
requires-pythoninuv lock(#4282) - Respect workspace-wide
requires-pythonin interpreter selection (#4298) - Support unnamed requirements in
uv add(#4326) - Use portable slash paths in lockfile (#4324)
- Use registry URL for fetching source distributions from lockfile (#4280)
uv sync --no-clean(#4367)- Filter dependencies by tracking markers on resolver forks (#4339)
- Use
Requires-Pythonto filter dependencies during universal resolution (#4273)
0.2.11
Enhancements
- Add support for local directories with
--index-url(#4226) - Add mTLS support (#4171)
- Allow version specifiers to be used in Python version requests (#4214)
Bug fixes
- Always install as editable when duplicate dependencies are requested (#4208)
- Avoid crash with
XDG_CONFIG_HOME=/dev/null(#4200) - Improve handling of missing interpreters during discovery (#4218)
- Make missing
METADATAfile a recoverable error (#4247) - Represent build tag as
u64(#4253)
Documentation
- Document Windows 10 requirement (#4210)
Release
- Re-add
aarch64-unknown-linux-gnubinary to release assets (#4254)
Preview features
- Add changelog for preview changes (#4251)
- Allow direct URLs for dev dependencies (#4233)
- Create temporary environments in dedicated cache bucket (#4223)
- Improve output when an older toolchain version is already installed (#4248)
- Initial implementation of
uv addanduv remove(#4193) - Refactor project interpreter request for
requires-pythonspecifiers (#4216) - Replace
toolchain fetchwithtoolchain install(#4228) - Support locking relative paths (#4205)
- Warn when 'requires-python' does not include a lower bound (#4234)
0.2.10
Enhancements
CLI
Bug fixes
- Allow transitive URLs via recursive extras (#4155)
- Avoid pre-fetching for unbounded minimum versions (#4149)
- Avoid showing dev hints for Python requirements (#4111)
- Include non-standard ports in keyring host queries (#4061)
- Omit URL dependencies from pre-release hints (#4140)
- Improve static metadata extraction for Poetry projects (#4182)
Documentation
- Document bytecode compilation in pip compatibility guide (#4195)
- Fix PEP 508 link in preview doc
specifying_dependencies(#4158) - Clarify role of
--systemflag (#4031)
Preview features
- Add
uv toolchain install(#4164) - Add
uv toolchain list(#4163) - Add extra and dev dependency validation to lockfile (#4112)
- Add markers to edges rather than distributions (#4166)
- Cap
Requires-Pythoncomparisons at the patch version (#4150) - Do not create a virtual environment when locking (#4147)
- Don't panic with invalid wheel source (#4191)
- Fetch managed toolchains in
uv run(#4143) - Fix PEP 508 link in preview doc
specifying_dependencies(#4158) - Ignore tags in universal resolution (#4174)
- Implement
Toolchain::find_or_fetchand use inuv venv --preview(#4138) - Lock all packages in workspace (#4016)
- Recreate project environment if
--pythonorrequires-pythondoesn't match (#3945) - Respect
--find-linksinlockandsync(#4183) - Set
--devto default foruv runanduv sync(#4118) - Track
Markersvia a PubGrub package variant (#4123) - Use union of
requires-pythonin workspace (#4041) - make universal resolver fork only when markers are disjoint (#4135)
0.2.9
Enhancements
- Respect existing
.egg-linkfiles in site packages (#4082)
Bug fixes
- Avoid extra-only filtering for constraints (#4095)
Documentation
- Add install link for specific version to README (#4105)
Preview features
- Add support for development dependencies (#4036)
- Avoid enforcing distribution ID uniqueness for extras (#4104)
- Ignore upper-bounds on
Requires-Python(#4086)
0.2.8
Bug fixes
- Fix
uv venvhandling whenVIRTUAL_ENVrefers to an non-existent environment (#4073)
Preview features
- Default to current Python minor if
Requires-Pythonis absent (#4070) - Enforce
Requires-Pythonwhen syncing (#4068) - Track supported Python range in lockfile (#4065)
0.2.7
CLI
- Support
NO_COLORandFORCE_COLORenvironment variables (#3979)
Performance
- Avoid building packages with dynamic versions (#4058)
- Avoid work-stealing in bytecode compilation (#4004)
Bug fixes
- Avoid dropping
pip syncrequirements with markers (#4051) - Bias towards local directories for bare editable requirements (#3995)
- Preserve fragments when applying verbatim redirects (#4038)
- Avoid 'are incompatible' for singular bounded versions (#4003)
Preview features
- Fix a bug where no warning is output when parsing of workspace settings fails. (#4014)
- Normalize extras in lockfile (#3958)
- Respect
Requires-Pythonin universal resolution (#3998)
0.2.6
Enhancements
- Support PEP 508 requirements for editables (#3946)
- Discard fragments when parsing unnamed URLs (#3940)
- Port all Git functionality to use Git CLI (#3833)
- Use statically linked C runtime on Windows (#3966)
Bug fixes
- Disable concurrent progress bars in Jupyter Notebooks (#3890)
- Initialize multi-progress state before individual bars (#3901)
- Add missing
i686alias forx86(#3899) - Add missing
ppc64lealias forpowerpc64le(#3963) - Fix reference to
--python-versionpatch behavior (#3989) - Avoid race condition in
OnceMap(#3987)
Preview features
- Add
uv run --package(#3864) - Add index URL parameters to Project CLI (#3984)
- Avoid re-adding solutions to forked state (#3967)
- Draft for user docs for workspaces (#3866)
- Include all extras when generating lockfile (#3912)
- Remove unstable uv lock from pip interface (#3970)
- Respect resolved Git SHAs in
uv lock(#3956) - Use lockfile in
uv run(#3894) - Use lockfile versions as resolution preferences (#3921)
- Use universal resolution in
uv lock(#3969)
0.2.5
Enhancements
- Add support for x86 Windows (#3873)
- Add support for
prepare_metadata_for_build_editablehook (#3870) - Add concurrent progress bars for downloads (#3252)
Bug fixes
- Update bundled Python URLs and add
"arm"architecture variant (#3855)
Preview features
- Add context to failed
uv tool run(#3882) - Add persistent storage of installed toolchains (#3797)
- Gate discovery of managed toolchains with preview (#3835)
- Initial workspace support (#3705)
- Move editable discovery behind
--previewfor now (#3884)
0.2.4
CLI
- Allow
--systemand--pythonto be passed together (#3830)
Bug fixes
- Ignore
libcon other platforms (#3825)
0.2.3
Enhancements
- Incorporate build tag into wheel prioritization (#3781)
- Avoid displaying log for satisfied editables if none are requested (#3795)
- Improve logging during interpreter discovery (#3790)
- Improve logging for environment locking (#3792)
- Improve logging of interpreter implementation (#3791)
- Remove extra details from interpreter query traces (#3803)
- Use colon more consistently in error messages (#3788)
Configuration
- Add JSON alias for
unsafe-any-match(#3820)
Release
- Remove redundant dynamically linked Linux binary again (#3762)" (#3778)
- Remove
aarch64-unknown-linux-gnufrom list of expected binaries (#3761)
Bug fixes
- Always include package names for Git and HTTPS dependencies (#3821)
- Fix interpreter cache collisions for relative virtualenv paths (#3823)
- Ignore unnamed requirements in preferences (#3826)
- Search for
python3in unix virtual environments (#3798) - Use a cross-platform representation for relative paths
in
pip compile(#3804)
Preview features
- Allow specification of additional requirements in
uv tool run(#3678)
0.2.2
Enhancements
- Report yanks for cached and resolved packages (#3772)
- Improve error message when default Python is not found (#3770)
Bug fixes
- Do not treat interpereters discovered via
CONDA_PREFIXas system interpreters (#3771)
0.2.1
Bug fixes
- Re-added the dynamically-linked Linux binary (#3762)
Preview features
- Allow users to specify a custom source package to
uv tool run(#3677)
0.2.0
Starting with this release, uv will use the minor version tag to indicate breaking changes.
Breaking
In this release, discovery of Python interpreters has changed. These changes should have a limited effect in most use-cases, however, it has been marked as a breaking change because the interpreter used by uv could change in some edge cases.
When multiple Python interpreters are installed, uv makes an attempt to find the exact version you requested. Previously, uv would stop at the first Python interpreter it discovered — if the interpreter did not satisfy the requested version, uv would fail. Now, uv will query multiple Python interpreters until it finds the requested version, skipping interpreters that are broken or do not satisfy the request.
Additionally, uv now allows requests for interpreter implementations such as pypy and cpython. For example,
the request --python cpython will ignore a python executable that's implemented by pypy. These requests may
also include a version, e.g., --python pypy@3.10. By default, uv will accept any interpreter implementation.
In summary, the following Python interpreter requests are now allowed:
- A Python version without an implementation name, e.g.,
3.10 - A path to a directory containing a Python installation, e.g.,
./foo/.venv - A path to a Python executable, e.g.,
~/bin/python - A Python implementation without a version, e.g.,
pypyorcpython - A Python implementation name and version, e.g.,
pypy3.8orpypy@3.8 - The name of a Python executable (for lookup in the
PATH), e.g.,foopython3
Previously, interpreter requests that were not versions or paths were always treated as executable names.
To align the user expectations, uv now respects the interpreter that starts it. For example, python -m uv ... will
now prefer the python interpreter that was used to start uv instead of searching for a virtual environment.
We now check if discovered interpreters are virtual environments. This means that setting VIRTUAL_ENV to a Python
installation directory that is not a virtual environment will no longer work. Instead, use --system
or --python <path>
to request the interpreter.
Enhancements
- Rewrite Python interpreter discovery (#3266)
- Add support for requesting
pypyinterpreters by implementation name (#3706) - Discover and prefer the parent interpreter when invoked
with
python -m uv#3736 - Add PEP 714 support for HTML API client (#3697)
- Add PEP 714 support for JSON API client (#3698)
- Write relative paths with unnamed requirement syntax (#3682)
- Allow relative Python executable paths in Windows trampoline (#3717)
- Add support for clang and msvc in missing header error (#3753)
CLI
- Allow
--constraintfiles inpip sync(#3741) - Allow
--config-fileto be passed before or after command name (#3730) - Make
--offlinea global argument (#3729)
Performance
- Improve performance in complex resolutions by reducing cost of PubGrub package clones (#3688)
Bug fixes
- Evaluate arbitrary markers to
false(#3681) - Improve
DirWithoutEntrypointerror message (#3690) - Improve display of root package in range errors (#3711)
- Propagate URL errors in verbatim parsing (#3720)
- Report yanked packages in
--dry-run(#3740)
Release
- Drop native
manylinuxwheel in favor of dual-tagged wheel (#3685) - The
python-patchtest feature is no longer on by default and must be manually enabled to test patch version behavior (#3746)
Documentation
- Add
--prefixlink to compatibility guide (#3734) - Add
--only-binaryto compatibility guide (#3735) - Add instructions for building and updating
uv-trampolines(#3731) - Add notes for testing on Windows (#3658)
Preview features
- Add initial implementation of
uv tool run(#3657) - Add offline support to
uv tool runanduv run(#3676) - Better error message for
uv runfailures (#3691) - Discover workspaces without using them in resolution (#3585)
- Support editables in
uv sync(#3692) - Track editable requirements in lockfile (#3725)
0.1.45
Enhancements
- Parse and store extras on editable requirements (#3629)
- Allow local versions in wheel filenames (#3596)
- Create lib64 symlink for 64-bit, non-macOS, POSIX environments (#3584)
Configuration
- Add
UV_CONCURRENT_INSTALLSvariable in favor ofRAYON_NUM_THREADS(#3646) - Add serialization and deserialization for
--find-links(#3619) - Apply combination logic to merge CLI and persistent configuration (#3618)
Performance
- Parallelize resolver (#3627)
Bug fixes
- Reduce sensitivity of unknown option error to discard Python 2 interpreters (#3580)
- Respect installed packages in
uv run(#3603) - Separate cache construction from initialization (#3607)
- Add missing
"directory"branch in source match (#3608) - Fix source annotation in pip compile
annotation-style=lineoutput (#3637) - Run cargo update to pull in h2 (#3638)
- URL-decode hashes in HTML fragments (#3655)
- Always print JSON output with
--formatjson (#3671)
Documentation
- Add
UV_CONFIG_FILEenvironment variable to documentation (#3653) - Explicitly mention
--userin compatibility guide (#3666)
Release
Preview features
- Add direct URL conversion to lockfile (#3633)
- Add hashes and versions to all distributions (#3589)
- Add local path conversions from lockfile (#3609)
- Add missing
"directory"branch in source match (#3608) - Add registry file size to lockfile (#3652)
- Add registry source distribution support to lockfile (#3649)
- Refactor editables for supporting them in bluejay commands (#3639)
- Rename
sourcedisttosdistin lockfile (#3590) - Respect installed packages in
uv run(#3603) - Support lossless serialization for Git dependencies in lockfile (#3630)
0.1.44
Release
Reverts "Use manylinux: auto to enable musllinux_1_2 aarch64
builds (#3444)"
The manylinux change appeared to introduce SSL errors when building aarch64 Docker images, e.g.,
invalid peer certificate: BadSignature
The v0.1.42 behavior for aarch64 manylinux builds is restored in this release.
See #3576
0.1.43
Enhancements
- Annotate sources of requirements in
pip compileoutput (#3269) - Track origin for
setup.pyfiles and friends (#3481)
Configuration
- Consolidate concurrency limits and expose as environment variables (#3493)
Release
- Use manylinux: auto to enable
musllinux_1_2aarch64 builds (#3444) - Enable musllinux_1_1 wheels (#3523)
Bug fixes
- Avoid keyword arguments for PEP 517 build hooks (#3517)
- Apply advisory locks when building source distributions (#3525)
- Avoid attempting to build editables when fetching metadata (#3563)
- Clone individual files on windows ReFS (#3551)
- Filter irrelevant requirements from source annotations (#3479)
- Make cache clearing robust to directories without read permissions (#3524)
- Respect constraints on editable dependencies (#3554)
- Skip Python 2 versions when locating Python (#3476)
- Make
--isolateda global argument (#3558) - Allow unknown
pyproject.tomlfields (#3511) - Change error value detection for glibc (#3487)
Preview features
- Create virtualenv if it doesn't exist in project API (#3499)
- Discover
uv runprojects hierarchically (#3494) - Read and write
uv.lockbased on project root (#3497) - Read package name from
pyproject.tomlinuv run(#3496) - Rebrand workspace API as project API (#3489)
0.1.42
This release includes stabilized support for persistent configuration in uv.
uv will now read project configuration from a pyproject.toml or uv.toml file in the current
directory or any parent directory, along with user configuration at ~/.config/uv/uv.toml
(or $XDG_CONFIG_HOME/uv/uv.toml) on macOS and Linux, and %APPDATA%\uv\uv.toml on Windows.
See: Persistent Configuration for more.
Enhancements
- Respect
MACOSX_DEPLOYMENT_TARGETin--python-platform(#3470)
Configuration
- Add documentation for persistent configuration (#3467)
- Add JSON Schema export to SchemaStore (#3461)
- Merge user and workspace settings (#3462)
Bug fixes
- Use Metadata10 to parse PKG-INFO of legacy editable (#3450)
- Apply normcase to line from easy-install.pth (#3451)
- Upgrade
async_http_range_readerto v0.8.0 to respect redirects in range requests (#3460) - Use last non-EOL version for
--python-platformmacOS (#3469)
Preview features
- Use environment layering for
uv run --with(#3447) - Warn when missing minimal bounds when using
tool.uv.sources(#3452)
0.1.41
Bug fixes
- Remove unconstrained version error from requirements (#3443)
0.1.40
Enhancements
- Add
--allow-existingto overwrite existing virtualenv (#2548) - Respect and enable uninstalls of legacy editables (
.egg-link) (#3415) - Respect and enable uninstalls of existing
.egg-infopackages (#3380)
CLI
- Accept
--no-upgrade,--no-refresh, etc. on the CLI (#3328)
Configuration
- Expose
UV_NO_BUILD_ISOLATIONas environment variable (#3318) - Expose
UV_PYTHONas an environment variable (#3284) - Expose
UV_LINK_MODEas environment variable (#3315) - Add
UV_CUSTOM_COMPILE_COMMANDto environment variable docs (#3382)
Bug fixes
- Ignore 401 HTTP responses with multiple indexes (#3292)
- Avoid panic for file URLs (#3306)
- Quote version parse errors consistently (#3325)
- Detect current environment when
uvis invoked from within a virtualenv (#3379) - Unset target when creating virtual environments (#3362)
- Update activation scripts from virtualenv (#3376)
- Use canonical URLs in satisfaction check (#3373)
Preview features
- Add basic
tool.uv.sourcessupport (#3263) - Improve non-git error message (#3403)
- Preserve given for
tool.uv.sourcespaths (#3412) - Restore verbatim in error message (#3402)
- Use preview mode for tool.uv.sources (#3277)
- Use top-level
--isolatedforuv run(#3431) - add basic "install from lock file" operation (#3340)
- uv-resolver: add initial version of universal lock file format (#3314)
0.1.39
Enhancements
- Add
--targetsupport tosyncandinstall(#3257) - Implement
--index-strategy unsafe-best-match(#3138)
Bug fixes
- Fix
platform_machinetag for--python-platformon macOS ARM (#3267)
Release
0.1.38
Enhancements
- Add alternate manylinux targets to
--python-platform(#3229) - An enum and backticks for lookahead error (#3216)
- Upgrade macOS target to
12.0(#3228) - Add keyring logs for URL and host fetches (#3212)
- Combine unresolvable error dependency clauses with the same root (#3225)
CLI
- Gave a better name to the
--colorplaceholder (#3226) - Warn when an unsupported Python version is encountered (#3250)
Configuration
- Use directory instead of file when searching for
uv.tomlfile (#3203)
Performance
- Only perform fetches of credentials for a realm and username combination once (#3237)
- Unroll self-dependencies via extras (#3230)
- Use read-write locks instead of mutexes in authentication handling (#3210)
Bug fixes
- Avoid removing quites from requirements markers (#3214)
- Avoid adding extras when expanding constraints (#3232)
- Reinstall package when editable label is removed (#3219)
Documentation
- Add
RAYON_NUM_THREADSto environment variable docs (#3223) - Document support for HTTP proxy variables (#3247)
- Fix documentation for
--python-platform (#3220)
0.1.37
Enhancements
- Change default HTTP read timeout to 30s (#3182)
- Add
--python-platformtosyncandinstallcommands (#3154) - Add ticks around error messages more consistently (#3004)
- Fix Docker publish permissions in release pipeline (#3195)
- Improve tracing for keyring provider (#3207)
Performance
- Update keyring provider to be async (#3089)
Bug fixes
- Fix fetch of credentials when cache is seeded with username (#3206)
Documentation
- Improve
--python-platformdocumentation (#3202)
0.1.36
Enhancements
- Add support for embedded Python on Windows (#3161)
- Add Docker image publishing to release pipeline (#3155)
Configuration
- Add
UV_CONSTRAINTenvironment variable to provide value for--constraint(#3162)
Bug fixes
- Avoid waiting for metadata for
--no-depseditables (#3188) - Fix
venvlauncher.exereference in venv creation (#3160) - Fix authentication for URLs with a shared realm (#3130)
- Restrict observed requirements to direct when
--no-depsis specified (#3191)
Documentation
- Add a versioning policy to the README (#3151)
0.1.35
Enhancements
- Add a
--python-platformargument to enable resolving against a target platform (#3111) - Enforce HTTP timeouts on a per-read (rather than per-request) basis (#3144)
Bug fixes
- Avoid preferring constrained over unconstrained packages (#3148)
- Allow
UV_SYSTEM_PYTHON=1in addition toUV_SYSTEM_PYTHON=true(#3136)
0.1.34
CLI
- Allow
--pythonand--systemonpip compile(#3115) - Remove
Option<bool>for--no-cache(#3129) - Rename
--compileto--compile-bytecode(#3102) - Accept
0,1, and similar values for Boolean environment variables (#3113)
Configuration
Bug fixes
- Avoid fetching unnecessary extra versions during resolution (#3100)
- Avoid deprioritizing recursive editables (#3133)
- Avoid treating localhost URLs as local file paths (#3132)
- Hide password in the index printed via
--emit-index-annotation(#3112) - Restore seeding of authentication cache from index URLs (#3124)
0.1.33
Breaking changes
Using the keyring requires a username to be provided on index URLs now. Previously, the username oauth2accesstoken
was assumed. This will affect Google Artifact Registry users using --keyring-provider subprocess and an index URL
without a username. The suggested fix is to add the required username to index URLs,
e.g., https://oauth2accesstoken@<url>.
See #2976 for details.
Enhancements
- Allow passing a virtual environment path to
uv pip --python(#3064) - Add compatibility argument for
pip list --outdated(#3055)
CLI
Performance
- Incorporate heuristics to improve package prioritization (#3087)
Bug fixes
- Fix HTTP authentication when the password includes percent encoded characters (e.g. with Google Artifact Registry) (#2822)
- Use usernames from URLs when looking for credentials in netrc files and the keyring #2563)
- Skip
HEADrequests for indexes that return 403 (e.g. PyPICloud) (#3070) - Use kebab-case consistently (#3080)
- Show package name in no version for direct dependency error (#3056)
- Avoid erroring when encountering
.tar.bz2source distributions (#3069)
0.1.32
Enhancements
- Add a
--require-hashescommand-line setting (#2824) - Add hash-checking support to
installandsync(#2945) - Add support for URL requirements in
--generate-hashes(#2952) - Allow unnamed requirements for overrides (#2999)
- Enforce and backtrack on invalid versions in source metadata (#2954)
- Fall back to distributions without hashes in resolver (#2949)
- Implement
--emit-index-annotationto annotate source index for each package (#2926) - Log hard-link failures (#3015)
- Support free-threaded Python (#2805)
- Support unnamed requirements in
--require-hashes(#2993) - Respect link mode for builds, in
uv pip compileand foruv venvseed packages (#3016) - Force color for build error messages (#3032)
- Surface invalid metadata as hints in error reports (#2850)
Configuration
- Add
UV_BREAK_SYSTEM_PACKAGESenvironment variable (#2995)
CLI
- Remove some restrictions in argument groups (#3001)
Bug fixes
- Add
--find-linkssource distributions to the registry cache (#2986) - Allow comments after all
requirements.txtentries (#3018) - Avoid cache invalidation on credentials renewal (#3010)
- Avoid calling
normalize_pathwith relative paths that extend beyond the current directory (#3013) - Deduplicate symbolic links between
purelibandplatlib(#3002) - Remove unused
--output-filefrompip install(#2975) - Strip query string when parsing filename from HTML index (#2961)
- Update hashes without
--upgradeif not present (#2966)
0.1.31
Bug fixes
- Ignore direct URL distributions in prefetcher (#2943)
0.1.30
Enhancements
- Show resolution diagnostics after
pip install(#2829)
Performance
- Speed up cold-cache
urllib3-boto3-botocoreperformance with batched prefetching (#2452)
Bug fixes
- Backtrack on distributions with invalid metadata (#2834)
- Include LICENSE files in source distribution (#2855)
- Respect
--no-buildand--no-binaryin--find-links(#2826) - Respect cached local
--find-linksin install plan (#2907) - Avoid panic with multiple confirmation handlers (#2903)
- Use scheme parsing to determine absolute vs. relative URLs (#2904)
- Remove additional 'because' in resolution failure messages (#2849)
- Use
miettewhen printingpip syncresolution failures (#2848)
0.1.29
Enhancements
- Allow conflicting Git URLs that refer to the same commit SHA (#2769)
- Allow package lookups across multiple indexes via explicit
opt-in (
--index-strategy unsafe-any-match) (#2815) - Allow no-op
--no-compileflag on CLI (#2816) - Upgrade
rs-async-zipto support data descriptors (#2809)
Bug fixes
- Avoid unused extras check in
pip installfor source trees (#2811) - Deduplicate editables during install commands (#2820)
- Fix windows lock race: lock exclusive after all try lock errors (#2800)
- Preserve
.gitsuffixes and casing in Git dependencies (#2789) - Respect Git tags and branches that look like short commits (#2795)
- Enable virtualenv creation on Windows with cpython-x86 (#2707)
Documentation
- Document that uv is safe to run concurrently (#2818)
0.1.28
Enhancements
- Recursively resolve direct URL references upfront (#2684)
Performance
- Populate the in-memory index when resolving lookahead URLs (#2761)
Bug fixes
- Detect Fish via
FISH_VERSION(#2781) - Exclude installed distributions with multiple versions from consideration in the resolver (#2779)
- Resolve non-determistic behavior in preferences due to site-packages ordering (#2780)
- Use canonical URL to key redirect map (#2764)
- Use distribution database and index for all pre-resolution phases (#2766)
- Fix
uv self updateon Linux (#2783)
0.1.27
Enhancements
- Add
--exclude-editablesupport topip-freeze(#2740) - Add
pyproject.tomlet al to list of prompted packages (#2746) - Consider installed packages during resolution (#2596)
- Recursively allow URL requirements for local dependencies (#2702)
Configuration
- Add
UV_RESOLUTIONenvironment variable for--resolution(#2720)
Bug fixes
- Respect overrides in all direct-dependency iterators (#2742)
- Respect subdirectories when reading static metadata (#2728)
0.1.26
Bug fixes
- Bump simple cache version (#2712)
0.1.25
Breaking changes
- Limit overrides and constraints to
requirements.txtformat (#2632)
Enhancements
- Accept
setup.pyandsetup.cfgfiles in compile (#2634) - Add
--no-binaryand--only-binarysupport torequirements.txt(#2680) - Allow pre-releases, locals, and URLs in non-editable path requirements (#2671)
- Use PEP 517 to extract dynamic
pyproject.tomlmetadata (#2633) - Add
Editable project locationandRequired-bytopip show(#2589) - Avoid
prepare_metadata_for_build_wheelcalls for Hatch packages with dynamic dependencies (#2645) - Fall back to PEP 517 hooks for non-compliant PEP 621 metadata (#2662)
- Support
file://localhost/schemes (#2657) - Use normal resolver in
pip sync(#2696)
CLI
- Disallow
pyproject.tomlfrompip uninstall -r(#2663) - Unhide
--emit-index-urland--emit-find-links(#2691) - Use dense formatting for requirement version specifiers in diagnostics (#2601)
Performance
- Add an in-memory cache for Git references (#2682)
- Do not force-recompile
.pycfiles (#2642) - Read package metadata from
pyproject.tomlwhen it is statically defined (#2676)
Bug fixes
- Don't error on multiple matching index URLs (#2627)
- Extract local versions from direct URL requirements (#2624)
- Respect
--no-indexwith--find-linksinpip sync(#2692) - Use
Scriptsfolder for virtualenv activation prompt (#2690)
0.1.24
Breaking changes
uv pip uninstallno longer supports specifying targets with the-e/--editableflag (#2577)
Enhancements
- Add a garbage collection mechanism to the CLI (#1217)
- Add progress reporting for named requirement resolution (#2605)
- Add support for parsing unnamed URL requirements (#2567)
- Add support for unnamed local directory requirements (#2571)
- Enable PEP 517 builds for unnamed requirements (#2600)
- Enable install audits without resolving named requirements (#2575)
- Enable unnamed requirements for direct URLs (#2569)
- Respect HTTP client options when reading remote requirements files (#2434)
- Use PEP 517 build hooks to resolve unnamed requirements (#2604)
- Use c-string literals and update trampolines (#2590)
- Support unnamed requirements directly in
uv pip uninstall(#2577) - Add support for unnamed Git and HTTP requirements (#2578)
- Make self-update an opt-in Cargo feature (#2606)
- Update minimum rust version (cargo) to 1.76 (#2618)
Bug fixes
- Fix self-updates on Windows (#2598)
- Fix authentication with usernames that contain
@characters (#2592) - Do not error when there are warnings on Python interpreter stderr (#2599)
- Prevent discovery of cache gitignore when building distributions (#2615)
Rust API
Documentation
- Fix badge to current CI status (#2612)
0.1.23
Enhancements
- Implement
--no-strip-extrasto preserve extras in compilation (#2555) - Preserve hashes for pinned packages when compiling
without
--upgrade(#2532) - Add a
uv self updatecommand (#2228) - Use relative paths for user-facing messages (#2559)
- Add
CUSTOM_COMPILE_COMMANDsupport touv pip compile(#2554) - Add SHA384 and SHA512 hash algorithms (#2534)
- Treat uninstallable packages as warnings, rather than errors (#2557)
Bug fixes
- Allow
VIRTUAL_ENVto take precedence overCONDA_PREFIX(#2574) - Ensure mtime of site packages is updated during wheel installation (#2545)
- Re-test validity after every lenient parsing change (#2550)
- Run interpreter discovery under
-Imode (#2552) - Search in both
purelibandplatlibfor site-packages population (#2537) - Fix wheel builds and uploads for musl ARM (#2518)
Documentation
- Add
--link-modedefaults to CLI (#2549) - Add an example workflow for compiling the current environment's packages (#1968)
- Add
uv pip check diagnosticstoPIP_COMPATIBILITY.md(#2544)
0.1.22
Enhancements
- Add support for PyTorch-style local version semantics (#2430)
- Add support for Hatch's
{root:uri}paths in editable installs (#2492) - Implement
uv pip check(#2397) - Add pip-like linehaul information to user agent (#2493)
- Add additional ARM targets to release (#2417)
Bug fixes
- Allow direct file path requirements to include fragments (#2502)
- Avoid panicking on cannot-be-a-base URLs (#2461)
- Drop
macosx_10_0from compatible wheel tags onaarch64(#2496) - Fix operating system detection on *BSD (#2505)
- Fix priority of ABI tags (#2489)
- Fix priority of platform tags for manylinux (#2483)
- Make > operator exclude post and local releases (#2471)
- Re-add support for pyenv shims (#2503)
- Validate required package names against wheel package names (#2516)
0.1.21
Enhancements
- Loosen
.dist-infovalidation to accept arbitrary versions (#2441)
Bug fixes
- Fix macOS architecture detection on i386 machines (#2454)
0.1.20
Bug fixes
- Add in-URL credentials to store prior to creating requests (#2446)
- Error when direct URL requirements don't match
Requires-Python(#2196)
0.1.19
Configuration
- Add
UV_NATIVE_TLSenvironment variable (#2412) - Allow
SSL_CERT_FILEwithout requiring--native-tls(#2401) - Add support for retrieving credentials from
keyring(#2254)
Bug fixes
- Add backoff for transient Windows failures (#2419)
- Move architecture and operating system probing to Python (#2381)
- Respect
--native-tlsinvenv(#2433) - Treat non-existent site-packages as empty (#2413)
Documentation
- Document HTTP authentication (#2425)
Performance
- Improve performance of version range operations (#2421)
0.1.18
Breaking changes
Users that rely on native root certificates (or the SSL_CERT_FILE) environment variable must now
pass the --native-tls command-line flag to enable this behavior.
- Enable TLS native root toggling at runtime (#2362)
Enhancements
- Add
--dry-runflag touv pip install(#1436) - Implement "Requires" field in
pip show(#2347) - Remove
wheelfrom default PEP 517 backend (#2341) - Add
UV_SYSTEM_PYTHONenvironment variable as alias to--system(#2354) - Add a
-vvlog level and make-vmore readable (#2301)
Bug fixes
- Expand environment variables prior to detecting scheme (#2394)
- Fix bug where
--no-binary :all:prevented build of editable packages (#2393) - Ignore inverse dependencies when building graph (#2360)
- Skip prefetching when
--no-depsis specified (#2373) - Trim injected
python_versionmarker to (major, minor) (#2395) - Wait for request stream to flush before returning resolution (#2374)
- Write relative paths for scripts in data directory (#2348)
- Add dedicated error message for direct filesystem paths in requirements (#2369)
0.1.17
Enhancements
- Allow more-precise Git URLs to override less-precise Git URLs (#2285)
- Add support for Metadata 2.2 (#2293)
- Added ability to select bytecode invalidation mode of generated
.pycfiles (#2297) - Add
Seekfallback for zip files with data descriptors (#2320)
Bug fixes
- Support reading UTF-16 requirements files (#2283)
- Trim rows in
pip list(#2298) - Avoid using setuptools shim of distutils (#2305)
- Communicate PEP 517 hook results via files (#2314)
- Increase default buffer size for wheel and source downloads (#2319)
- Add
Accept-Encoding: identityto remaining stream paths (#2321) - Avoid duplicating authorization header with netrc (#2325)
- Remove duplicate
INSTALLERinRECORD(#2336)
Documentation
- Add a custom suggestion to install wheel into the build environment (#2307)
- Document the environment variables that uv respects (#2318)
0.1.16
Enhancements
- Add support for
--no-build-isolation(#2258) - Add support for
--break-system-packages(#2249) - Add support for
.netrcauthentication (#2241) - Add support for
--format=freezeand--format=jsoninuv pip list(#1998) - Add support for remote
https://requirements files (#1332) (#2081) - Implement
uv pip show(#2115) - Allow
UV_PRERELEASEto be set via environment variable (#2240) - Include exit code for build failures (#2108)
- Query interpreter to determine correct
virtualenvpaths, enablinguv venvwith PyPy and others (#2188) - Respect non-
sysconfig-based system Pythons, enabling--systeminstalls on Debian and others (#2193)
Bug fixes
- Fallback to fresh request on non-validating 304 (#2218)
- Add
.stdout()and.stderr()outputs toPrinter(#2227) - Close
RECORDafter reading entries during uninstall (#2259) - Fix Conda Python detection on Windows (#2279)
- Fix parsing requirement where a variable follows an operator without a space (#2273)
- Prefer more recent minor versions in wheel tags (#2263)
- Retry on Python interpreter launch failures during
--compile(#2278) - Show appropriate activation command based on shell detection (#2221)
- Escape Windows paths with spaces in
venvactivation command (#2223) - Add specialized activation message for
cmd.exe(#2226) - Cache wheel metadata in no-PEP 658 fallback (#2255)
- Use reparse points to detect Windows installer shims (#2284)
Documentation
- Add
PIP_COMPATIBILITY.mdto document known deviations frompip(#2244)
0.1.15
Enhancements
- Add a
--compileoption toinstallto enable bytecode compilation (#2086) - Expose the
--exclude-newerflag to limit candidate packages based on date (#2166) - Add
uvversion to user agent (#2136)
Bug fixes
- Set
.metadatasuffix on URL path (#2123) - Fallback to non-range requests when HEAD returns 404 (#2186)
- Allow direct URLs in optional dependencies in editables (#2206)
- Allow empty values in WHEEL files (#2170)
- Avoid Windows Store shims in
--python python3-like invocations (#2212) - Expand Windows shim detection to include
python3.12.exe(#2209) - HTML-decode URLs in HTML indexes (#2215)
- Make direct dependency detection respect markers (#2207)
- Respect
py --list-pathsfallback in--python python3invocations on Windows (#2214) - Respect local freshness when auditing installed environment (#2169)
- Respect markers on URL dependencies in editables (#2176)
- Respect nested editable requirements in parser (#2204)
- Run Windows against Python 3.13 (#2171)
- Error when editables don't match
Requires-Python(#2194)
0.1.14
Enhancements
- Add support for
--system-site-packagesinuv venv(#2101) - Add support for Python installed from Windows Store (#2122)
- Expand environment variables in
-rand-csubfile paths (#2143) - Treat empty index URL strings as null instead of erroring (#2137)
- Use space as delimiter for
UV_EXTRA_INDEX_URL(#2140) - Report line and column numbers in
requirements.txtparser errors (#2100) - Improve error messages when
uvis offline (#2110)
Bug fixes
- Future-proof the
pipentrypoints special-case (#1982) - Allow empty extras in
pep508-rsand add more corner case to tests (#2128) - Adjust base Python lookup logic for Windows to respect Windows Store (#2121)
- Consider editable dependencies to be 'direct' for
--resolution(#2114) - Preserve environment variables in resolved Git dependencies (#2125)
- Use
prefixinstead ofbase_prefixfor environment root (#2117) - Wrap unsafe script shebangs in
/bin/sh(#2097) - Make WHEEL parsing error line numbers one indexed (#2151)
- Determine
site-packagespath based on implementation name (#2094)
Documentation
- Add caveats on
--systemsupport to the README (#2131) - Add instructions for
SSL_CERT_FILEenv var (#2124)
0.1.13
Bug fixes
- Prioritize
PATHoverpy --list-pathsin Windows selection (#2057). This fixes an issue in which the--systemflag would not work correctly on Windows in GitHub Actions. - Avoid canonicalizing user-provided interpreters (#2072). This fixes an
issue in which the
--pythonflag would not work correctly with pyenv and other interpreters. - Allow pre-releases for requirements in constraints files (#2069)
- Avoid truncating EXTERNALLY-MANAGED error message (#2073)
- Extend activation highlighting to entire
venvcommand (#2070) - Reverse the order of
--index-urland--extra-index-urlpriority (#2083) - Avoid assuming
RECORDfile is inplatlib(#2091)
0.1.12
CLI
- Add a
--pythonflag to allow installation into arbitrary Python interpreters (#2000) - Add a
--systemflag for opt-in non-virtualenv installs (#2046)
Enhancements
- Add a
--prealias for--prerelease=allow(#2049) - Enable
freezeandlistto introspect non-virtualenv Pythons (#2033) - Support environment variables in index URLs in requirements files (#2036)
- Add
--exclude-editableand--excludeargs touv pip list(#1985) - Always remove color codes from output file (#2018)
- Support recursive extras in direct
pyproject.tomlfiles (#1990) - Un-cache editable requirements with dynamic metadata (#2029)
- Use a non-local lockfile for locking system interpreters (#2045)
- Surface the
EXTERNALLY-MANAGEDmessage to users (#2032)
0.1.11
Enhancements
- Add support for pip-compile's
--unsafe-packageflag (#1889) - Improve interpreter discovery logging (#1909)
- Implement
uv pip list(#1662) - Allow round-trip via
freezecommand (#1936) - Don't write pip compile output to stdout with
-q(#1962) - Add long-form version output (#1930)
Compatibility
- Accept single string for
backend-path(#1969) - Add compatibility for deprecated
python_implementationmarker (#1933) - Generate versioned
piplaunchers (#1918)
Bug fixes
- Avoid erroring for source distributions with symlinks in archive (#1944)
- Expand scope of archive timestamping (#1960)
- Gracefully handle virtual environments with conflicting packages (#1893)
- Invalidate dependencies when editables are updated (#1955)
- Make < exclusive for non-pre-release markers (#1878)
- Properly apply constraints in venv audit (#1956)
- Re-sync editables on-change (#1959)
- Remove current directory from PATH in PEP 517 hooks (#1975)
- Remove
--upgradeand--quietflags from generated output files (#1873) - Use full python version in
pyvenv.cfg(#1979)
Performance
- fix
uv pip installhandling of gzip'd response and PEP 691 (#1978) - Remove
spawn_blockingfrom version map (#1966)
Documentation
- Clarify
lowestvs.lowest-directresolution strategies (#1954) - Improve error message for network timeouts (#1961)
0.1.10
Enhancements
- Omit
--find-linksfrom annotation header unless requested (#1898) - Write to stdout when
--output-fileis present (#1892)
Bug fixes
- Retain authentication when making range requests (#1902)
- Fix uv-created venv detection (#1908)
- Fix Windows
pyfailure from spurious stderr (#1885) - Ignore Python 2 installations when querying for interpreters (#1905)
0.1.9
Enhancements
- Add support for
config_settingsin PEP 517 hooks (#1833) - feat: allow passing extra config k,v pairs for pyvenv.cfg when creating a venv (#1852)
Bug fixes
- Ensure authentication is passed from the index url to distribution files (#1886)
- Use
rustls-tls-native-rootsinuvcrate (#1888) - pep440: fix version ordering (#1883)
- Hide index URLs from header if not emitted (#1835)
Documentation
- Add changelog (#1881)
0.1.8
Bug fixes
- Allow duplicate URLs that resolve to the same canonical URL (#1877)
- Retain authentication attached to URLs when making requests to the same host (#1874)
- Win Trampoline: Use Python executable path encoded in binary (#1803)
- Expose types to implement custom
ResolverProvider(#1862) - Search
PATHwhenpythoncan't be found withpy(#1711) - Avoid displaying "root" package when formatting terms (#1871)
Documentation
- Use more universal windows install instructions (#1811)
Rust API
- Expose types to implement custom ResolverProvider (#1862)
0.1.7
Enhancements
- Stream zip archive when fetching non-range-request metadata (#1792)
- Support setting request timeout with
UV_HTTP_TIMEOUTandHTTP_TIMEOUT(#1780) - Improve error message when git ref cannot be fetched (#1826)
Configuration
- Implement
--annotation-styleparameter foruv pip compile(#1679)
Bug fixes
- Add fixup for
prefect<1.0.0(#1825) - Add support for
>devspecifier (#1776) - Avoid enforcing URL correctness for installed distributions (#1793)
- Don't expect pinned packages for editables with non-existent extras (#1847)
- Linker copies files as a fallback when ref-linking fails (#1773)
- Move conflicting dependencies into PubGrub (#1796)
- Normalize
VIRTUAL_ENVpath in activation scripts (#1817) - Preserve executable bit when untarring archives (#1790)
- Retain passwords in Git URLs (#1717)
- Sort output when installing seed packages (#1822)
- Treat ARM wheels as higher-priority than universal (#1843)
- Use
gitcommand to fetch repositories instead oflibgit2for robust SSH support (#1781) - Use redirected URL as base for relative paths (#1816)
- Use the right marker for the
implementationfield ofpyvenv.cfg(#1785) - Wait for distribution metadata with
--no-deps(#1812) - platform-host: check /bin/sh, then /bin/dash and then /bin/ls (#1818)
- Ensure that builds within the cache aren't considered Git repositories (#1782)
- Strip trailing
+from version number of local Python builds (#1771)
Documentation
- Add docs for git authentication (#1844)
- Update venv activation for windows (#1836)
- Update README.md to include extras example (#1806)
0.1.6
Enhancements
- Expose find_uv_bin and declare typing support (#1728)
- Implement
uv cache dir(#1734) - Support
venv --prompt(#1570) - Print activation instructions for a venv after one has been created (#1580)
CLI
- Add shell completions generation (#1675)
- Move
uv cleantouv cache clean(#1733) - Allow
-falias for--find-links(#1735)
Configuration
- Control pip timeout duration via environment variable (#1694)
Bug fixes
- Add support for absolute paths on Windows (#1725)
- Don't preserve timestamp in streaming unzip (#1749)
- Ensure extras trigger an install (#1727)
- Only preserve the executable bit (#1743)
- Preserve trailing slash for
--find-linksURLs (#1720) - Respect
--index-urlprovided via requirements.txt (#1719) - Set index URLs for seeding venv (#1755)
- Support dotted function paths for script entrypoints (#1622)
- Support recursive extras for URL dependencies (#1729)
- Better error message for missing space before semicolon in requirements (#1746)
- Add warning when dependencies are empty with Poetry metadata (#1650)
- Ignore invalid extras from PyPI (#1731)
- Improve Poetry warning (#1730)
- Remove uv version from uv pip compile header (#1716)
- Fix handling of range requests on servers that return "Method not allowed" (#1713)
- re-introduce cache healing when we see an invalid cache entry (#1707)
Documentation
- Clarify Windows install command in README.md (#1751)
- Add instructions for installing on Arch Linux (#1765)
Rust API
- Allow passing in a custom reqwest Client (#1745)
0.1.5
Enhancements
- Add
CACHEDIR.TAGto uv-created virtualenvs (#1653)
Bug fixes
- Build source distributions in the cache directory instead of the global temporary directory (#1628)
- Do not remove uv itself on pip sync (#1649)
- Ensure we retain existing environment variables
during
python -m uv(#1667) - Add yank warnings at end of messages (#1669)
Documentation
- Add brew to readme (#1629)
- Document RUST_LOG=trace for additional logging verbosity (#1670)
- Document local testing instructions (#1672)
- Minimal markdown nits (#1664)
- Use
--overriderather than-oto specify overrides in README.md (#1668) - Remove setuptools & wheel from seed packages on Python 3.12+ ( #1602) (#1613)
0.1.4
Enhancements
Bug fixes
- Add graceful fallback for Artifactory indexes (#1574)
- Allow URL requirements in editable installs (#1614)
- Allow repeated dependencies when installing (#1558)
- Always run
get_requires_for_build_wheel(#1590) - Avoid propagating top-level options to sub-resolutions (#1607)
- Consistent use of
BIN_NAMEin activation scripts (#1577) - Enforce URL constraints for non-URL dependencies (#1565)
- Allow non-nested archives for
hexdumpand others (#1564) - Avoid using
whitecoloring in terminal output (#1576) - Bump simple metadata cache version (#1617)
- Better error messages on expect failures in resolver (#1583)
Documentation
- Add license to activator scripts (#1610)
0.1.3
Enhancements
- Add support for
UV_EXTRA_INDEX_URL(#1515) - Use the system trust store for HTTPS requests (#1512)
- Automatically detect virtual environments when used
via
python -m uv(#1504) - Add warning for empty requirements files (#1519)
- Support MD5 hashes (#1556)
Bug fixes
- Add support for extras in editable requirements (#1531)
- Apply percent-decoding to file-based URLs (#1541)
- Apply percent-decoding to filepaths in HTML find-links (#1544)
- Avoid attempting rename in copy fallback path (#1546)
- Fix list rendering in
venv --helpoutput (#1459) - Fix trailing commas on
Requires-Pythonin HTML indexes (#1507) - Read from
/bin/shif/bin/lscannot be found when determining libc path (#1433) - Remove URL encoding when determining file name (#1555)
- Support recursive extras (#1435)
- Use comparable representation for
PackageId(#1543) - fix OS detection for Alpine Linux (#1545)
- only parse /bin/sh (not /bin/ls) (#1493)
- pypi-types: fix lenient requirement parsing (#1529)
- Loosen package script regexp to match spec (#1482)
- Use string display instead of debug for url parse trace (#1498)
Documentation
- Provide example of file based package install. (#1424)
- Adjust link (#1434)
- Add troubleshooting section to benchmarks guide (#1485)
- infra: source github templates (#1425)
0.1.2
Enhancements
- Add
--upgradesupport topip install(#1379) - Add
-U/-Pshort flags for--upgrade/--upgrade-package(#1394) - Add
UV_NO_CACHEenvironment variable (#1383) - uv-cache: Add hidden alias for --no-cache-dir (#1380)
Bug fixes
- Add fix-up for invalid star comparison with major-only version (#1410)
- Add fix-up for trailing comma with trailing space (#1409)
- Allow empty fragments in HTML parser (#1443)
- Fix search for
python.exeon Windows (#1381) - Ignore invalid extra named
.none(#1428) - Parse
-rand-centries as relative to containing file (#1421) - Avoid import contextlib in
_virtualenv(#1406) - Decode HTML escapes when extracting SHA (#1440)
- Fix broken URLs parsed from relative paths in registries (#1413)
- Improve error message for invalid sdist archives (#1389)
Documentation
- Re-add license badge to the README (#1333)
- Replace "novel" in README (#1365)
- Tweak some grammar in the README (#1387)
- Update README.md to include venv activate (#1411)
- Update wording and add
alttag (#1423)
0.1.1
Bug fixes
- Fix bug where
python3is not found in the global path (#1351)