SHA256
14
0
forked from pool/python-uv

- update to 0.7.9:

* The changes reverted in 0.7.8 have been restored.
   * See the python-build-standalone release notes for more details.
 * Enhancements
   * Improve obfuscation of credentials in URLs 
   * Allow running non-default Python implementations via uvx 
   * Add uvw as alias for uv without console window on Windows 
   * Allow discovery of x86-64 managed Python builds on macOS 
   * Differentiate between implicit vs explicit architecture requests 
   * Implement ordering for Python architectures to prefer native installations 
   * Only show the first match per platform (and architecture) by default in uv python list 
   * Write the path of the parent environment to an extends-environment key in the pyvenv.cfg file of an ephemeral environment 
   * Improve the error message when libc cannot be found, e.g., when using the distroless containers 
 * Performance
   * Avoid rendering info log level 
   * Improve performance of uv-python crate's manylinux submodule 
   * Optimize Version display 
   * Reduce number of reference-checks for uv cache clean 
 * Bug fixes
   * Avoid reinstalling dependency group members with --all-packages 
   * Don't fail direct URL hash checking with dependency metadata 
   * Exit early on self update if global --offline is set 
   * Fix cases where the uv lock is incorrectly marked as out of date 
   * Include pre-release versions in uv python install --reinstall 
   * Set LC_ALL=C for git when checking git worktree 
   * Avoid rejecting Windows paths for remote Python download JSON targets 
 * Preview
   * Add uv add --bounds to configure version constraints 
 * Documentation
   * Add documentation about Python versions to Tools concept page

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-uv?expand=0&rev=58
This commit is contained in:
2025-06-01 23:12:29 +00:00
committed by Git OBS Bridge
parent d68d864a68
commit f1029ff116
5 changed files with 47 additions and 6 deletions

View File

@@ -1,3 +1,44 @@
-------------------------------------------------------------------
Sun Jun 1 23:09:48 UTC 2025 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.7.9:
* The changes reverted in 0.7.8 have been restored.
* See the python-build-standalone release notes for more details.
* Enhancements
* Improve obfuscation of credentials in URLs
* Allow running non-default Python implementations via uvx
* Add uvw as alias for uv without console window on Windows
* Allow discovery of x86-64 managed Python builds on macOS
* Differentiate between implicit vs explicit architecture requests
* Implement ordering for Python architectures to prefer native installations
* Only show the first match per platform (and architecture) by default in uv python list
* Write the path of the parent environment to an extends-environment key in the pyvenv.cfg file of an ephemeral environment
* Improve the error message when libc cannot be found, e.g., when using the distroless containers
* Performance
* Avoid rendering info log level
* Improve performance of uv-python crate's manylinux submodule
* Optimize Version display
* Reduce number of reference-checks for uv cache clean
* Bug fixes
* Avoid reinstalling dependency group members with --all-packages
* Don't fail direct URL hash checking with dependency metadata
* Exit early on self update if global --offline is set
* Fix cases where the uv lock is incorrectly marked as out of date
* Include pre-release versions in uv python install --reinstall
* Set LC_ALL=C for git when checking git worktree
* Avoid rejecting Windows paths for remote Python download JSON targets
* Preview
* Add uv add --bounds to configure version constraints
* Documentation
* Add documentation about Python versions to Tools concept page
* Add example of enabling Dependabot
* Fix exclude-newer date format for persistent configuration files
* Quote versions variables in GitLab documentation
* Update Dependabot support status
* Explicitly specify to add a new repo entry to the repos list item in the .pre-commit-config.yaml
* Add integration with marimo guide
* Add pronunciation to README
-------------------------------------------------------------------
Mon May 26 08:51:37 UTC 2025 - Ondřej Súkup <mimi.vx@gmail.com>