mirror of https://github.com/astral-sh/uv
29 KiB
29 KiB
Changelog
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 lock file 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-prerelease 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 determing 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)