SHA256
14
0
forked from pool/python-uv

Accepting request 1208576 from system:homeautomation:home-assistant:unstable

- update to version 0.4.22:
  * Respect `[tool.uv.sources]` in build requirements
  * Add a dedicated `uv publish` error message for missing usernames
  * Support interactive input in `uv publish`
  * Use raw filenames in `uv publish`
  * Reuse the result of `which git`
  * Avoid environment check optimization for `uv pip install --exact`
  * Do not use free-threaded interpreters without a free-threaded request
  * Don't recommend `--prerelease=allow` during build requirement resolution errors
  * Prefer optimized builds for free-threaded Python downloads
  * Retain old `python-build-standalone` releases
  * Run `uv build` builds in the source distribution bucket
- 0.4.21
  * Add support for managed installations of free-threaded Python
  * Add note about `uvx` to `uv tool run` short help
  * Enable HTTP/2 requests
  * Support `uv tree --no-dev`
  * Support PEP 723 metadata with `uv run -`
  * Support `pip install --exact`
  * Support `uv export --no-header`
  * Add Python 3.13 images to Docker publish
  * Support remote (`https://`) scripts in `uv run`
  * Allow comma value-delimited arguments in `uv run --with`
  * Support wildcards in `UV_INSECURE_HOST`
  * Use shared index when fetching metadata in lock satisfaction routine
  * Add prerelease compatibility check to `uv python` CLI
  * Avoid deleting a project environment directory if we cannot tell if a `pyvenv.cfg` file exists
  * Avoid excluding valid wheels for exact `requires-python` bounds
  * Bump `netrc` crate to latest commit
  * Fix `uv python pin 3.13t` failure when parsing version for project requires check

OBS-URL: https://build.opensuse.org/request/show/1208576
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-uv?expand=0&rev=13
This commit is contained in:
Soc Virnyl Estela
2024-10-17 15:17:32 +00:00
committed by Git OBS Bridge
parent 4e3f1261bf
commit 3efed86239
5 changed files with 56 additions and 6 deletions

View File

@@ -1,3 +1,53 @@
-------------------------------------------------------------------
Thu Oct 17 08:09:23 UTC 2024 - Adrian Schröter <adrian@suse.de>
- update to version 0.4.22:
* Respect `[tool.uv.sources]` in build requirements
* Add a dedicated `uv publish` error message for missing usernames
* Support interactive input in `uv publish`
* Use raw filenames in `uv publish`
* Reuse the result of `which git`
* Avoid environment check optimization for `uv pip install --exact`
* Do not use free-threaded interpreters without a free-threaded request
* Don't recommend `--prerelease=allow` during build requirement resolution errors
* Prefer optimized builds for free-threaded Python downloads
* Retain old `python-build-standalone` releases
* Run `uv build` builds in the source distribution bucket
- 0.4.21
* Add support for managed installations of free-threaded Python
* Add note about `uvx` to `uv tool run` short help
* Enable HTTP/2 requests
* Support `uv tree --no-dev`
* Support PEP 723 metadata with `uv run -`
* Support `pip install --exact`
* Support `uv export --no-header`
* Add Python 3.13 images to Docker publish
* Support remote (`https://`) scripts in `uv run`
* Allow comma value-delimited arguments in `uv run --with`
* Support wildcards in `UV_INSECURE_HOST`
* Use shared index when fetching metadata in lock satisfaction routine
* Add prerelease compatibility check to `uv python` CLI
* Avoid deleting a project environment directory if we cannot tell if a `pyvenv.cfg` file exists
* Avoid excluding valid wheels for exact `requires-python` bounds
* Bump `netrc` crate to latest commit
* Fix `uv python pin 3.13t` failure when parsing version for project requires check
* Fix handling of != intersections in `requires-python`
* Remove the newly created tool environment if sync failed
* Respect dynamic extras in `uv lock` and `uv sync`
* Treat resolver failures as fatal in lockfile validation
* Use `git config --get` for author information for improved backwards compatibility
* Use comma-separated values for `UV_FIND_LINKS`
* Use shared resolver state between add and lock to avoid double Git update
* Make `--relocatable` entrypoints robust to symlinking
* Improve compatibility with VSCode PS1 prompt
* Fix "Stream did not contain valid UTF-8" failures in Windows
* Use `--with-requirements` in `uvx` error hint
* Include `uvx` installation in Docker examples
* Make the instructions for the Windows standalone installer consistent across README and documentation
* Update pip compatibility guide to note transitive URL dependency support
* Document `--reinstall` with `--exclude-newer` to ensure downgrades
-------------------------------------------------------------------
Sat Oct 12 23:18:11 UTC 2024 - Soc Virnyl Estela <obs@uncomfyhalomacro.pl>