SHA256
14
0
forked from pool/python-uv

- update to 0.8.2

* Configuration
   * Add UV_INIT_BUILD_BACKEND 
 * Rust API
   * Expose tls_built_in_root_certs for client 
 * Enhancements
   * Add derivation chains for dependency errors 
   * Add support for HF_TOKEN 
   * Allow --config-settings-package to apply configuration settings at the package level 
   * Create (e.g.) python3.13t executables in uv venv 
   * Disallow writing symlinks outside the source distribution target directory 
   * Elide traceback when python -m uv in interrupted with Ctrl-C on Windows 
   * Match --bounds formatting for uv_build bounds in uv init 
   * Support extras and dependency_groups markers in PEP 508 grammar 
   * Support extras and dependency_groups markers on uv pip install and uv pip sync 
   * Add hint to use uv self version when uv version cannot find a project 
   * Improve error reporting when removing Python versions from the Windows registry 
   * Make warnings about masked [tool.uv] fields more precise 
 * Preview features
   * Emit JSON output in uv sync with --quiet 
 * Bug fixes
   * Avoid reading files in the environment bin that are not entrypoints 
   * Avoid removing empty directories when constructing virtual environments 
   * Preserve index URL priority order when writing to pyproject.toml 
   * Allow removal of virtual environments with missing interpreters 
   * Apply Cache-Control overrides to response, not request headers 
   * Copy entry points into ephemeral environments to ensure layers are respected 
   * Workaround Jupyter Lab application directory discovery in ephemeral environments 
   * Enforce requires-python in pylock.toml 
   * Fix kebab casing of README variants in build backend

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-uv?expand=0&rev=90
This commit is contained in:
2025-07-23 18:34:19 +00:00
committed by Git OBS Bridge
parent d8320ce2d8
commit 26db979dc4
5 changed files with 45 additions and 6 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Wed Jul 23 17:58:13 UTC 2025 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.8.2
* Configuration
* Add UV_INIT_BUILD_BACKEND
* Rust API
* Expose tls_built_in_root_certs for client
* Enhancements
* Add derivation chains for dependency errors
* Add support for HF_TOKEN
* Allow --config-settings-package to apply configuration settings at the package level
* Create (e.g.) python3.13t executables in uv venv
* Disallow writing symlinks outside the source distribution target directory
* Elide traceback when python -m uv in interrupted with Ctrl-C on Windows
* Match --bounds formatting for uv_build bounds in uv init
* Support extras and dependency_groups markers in PEP 508 grammar
* Support extras and dependency_groups markers on uv pip install and uv pip sync
* Add hint to use uv self version when uv version cannot find a project
* Improve error reporting when removing Python versions from the Windows registry
* Make warnings about masked [tool.uv] fields more precise
* Preview features
* Emit JSON output in uv sync with --quiet
* Bug fixes
* Avoid reading files in the environment bin that are not entrypoints
* Avoid removing empty directories when constructing virtual environments
* Preserve index URL priority order when writing to pyproject.toml
* Allow removal of virtual environments with missing interpreters
* Apply Cache-Control overrides to response, not request headers
* Copy entry points into ephemeral environments to ensure layers are respected
* Workaround Jupyter Lab application directory discovery in ephemeral environments
* Enforce requires-python in pylock.toml
* Fix kebab casing of README variants in build backend
* Improve concurrency resilience of removing Python versions from the Windows registry
* Retry HTTP requests on invalid data errors
* Update virtual environment removal to delete pyvenv.cfg last
* Error on unknown fields in dependency-metadata
-------------------------------------------------------------------
Fri Jul 18 18:14:03 UTC 2025 - Ondřej Súkup <mimi.vx@gmail.com>