Accepting request 1228409 from devel:languages:python
- Update to version 0.5.6: * Add --dry-run to uv pip uninstall * Allow --constraints and --overrides in uv tool install * Display removed Python executables on uninstall * Warn when keyring has no password for uv publish * Add suggested action when .python-version pin is incompatible with the project * Improve error messages for mismatches in tool.uv.sources * Use constraints in trace rather than irrelevant requires-python * Add uv python install --default * Fix Python executable installation when multiple patch versions are requested * Build backend: Revamp include / exclude * Build backend: Add fast path * Build backend: Add functions to collect file list * Build backend: Default excludes * Build backend: Refactoring before list * Build backend: Warn when visiting over 10k files * Make check-url available in configuration files * Avoid adding non-extra package with extra dependencies * Avoid cloning String in marker evaluation * uv-pep508: Add more methods for simplifying extra-related expressions * Allow file: URLs to include package names * Avoid using IDs across PubGrub states * Consistently enforce requested-vs.-built metadata when retrieving wheels * Do not show empty version specifier in uv tool list * Include Git member information when getting metadata from cache * Include base installation directory in uv run PATH * Insert backslash when appending to system drive * Normalize paths when lowering Git dependencies * Omit origin when comparing requirements * Override manylinux_compatible with --python-platform * Pass extra when evaluating lockfile markers * Propagate markers for recursive extras in resolver * Respect path dependencies within Git dependencies * Support recursive extras with marker in pip compile -r pyproject.toml * Don't emit unpinned warning for proxy packages * Fix --refresh-package flag mentioned as --refresh-dependency * Handle Windows AV/EDR file locks during script installations * Re-enable conflicting extra/group tests and fix regression from #9540 * Add missing word to docs for run.md * Add policies reference section and license document * Fix typo in entry point docs * Fix up version in prior uninstall instructions * Mention uv pip behavior in build system note * Update build failures document * Correct wording for multiple sources section * Add aliases for build backend requests * Avoid displaying empty paths * Allow constraints in uv tool upgrade * Remove conflict between --no-sync and --frozen in uv run * Respect dependency sources in overrides and constraints * Show an interpreter-focused message for --target and --prefix * Add --no-extra flag and setting * Add uv export --prune * Add dedicated error message for musl install attempts * Add various grammar changes to conflict error messages * Annotate default groups in conflict error messages * Report marker diagnostics during parsing, rather than evaluation * Use consistent formatting for build system errors * Use rich diagnostics for build failures * Improve build backend excludes * Include PEP 639 license-files metadata during uv publish * Initialize rayon lazily * Migrate to PubGrub's arena for package names * Allow dependency groups to include the containing package * Allow syncing to empty virtual environment directories * Allow system Python discovery with --target and --prefix * Don't warn when --output-file is empty * Fix Python interpreter discovery on non-glibc hosts * Fix tool.uv.dependency-metadata.[].version schema * Only respect preferences across the same indexes * Re-compile when --compile is passed to an install operation * Remove --upgrade, --no-upgrade, and --upgrade-package from uv tool upgrade * Remove dev dependencies in --all-groups --no-dev * Surface extras and group conflicts in uv export * Treat deprecated aliases as equivalent in marker algebra * Treat less compatible tags as lower priority in resolver * Avoid referencing scikit-build (instead of scikit-build-core) * Expand entry points documentation * Fix example pyproject.toml in project concept documentation * Fix header level of "Conflicting dependencies" page * Touch-up the extension module guide * Update the dependencies documentation * Reference --no-progress option in related environment variable * Accept either singular or plural values for CLI requirements * Add --all-groups to uv sync, uv run, uv export, and uv tree * Add a progress bar to uv tree --outdated and uv pip list --outdated * Add retries for Python downloads * Use exponential backoff for publish retries * Add manylinux target triples up to glibc 2.40 * Parallelize network requests in uv tree --outdated * Use zlib-rs on all platforms * Avoid validating extra and group sources in build-system.requires * Catch retries with wrapped reqwest errors * Sort hashes in uv export output * Strip --index and --default-index from command header * Add breadcrumbs to the documentation * Add minimum version to PyTorch guide * Add support for anchor redirects with client-side js * Improve content on project configuration * Improve the project creation documentation * Move the integration guides into the "Guides" section as a collapsed group * Reorganize the project concept documentation * Use the full screen height for the main content to stabilize the nav * Add dedicated warning for empty stdin * Allow conflicting extras in explicit index assignments * Support overrides and constraints in PEP 723 scripts * Update uv tool install --force to imply --reinstall-package <name> * Turn --verify-hashes on by default * Enable zlib-rs on all platforms * Allow apostrophe in virtual environment name * Automatically retry body errors when processing response * Detect nested workspace inside the current workspace and members with identical names * Only install the specified project with --frozen --package in legacy non-[project] workspaces * Respect [[tool.uv.index]] in PEP 723 scripts * Show derivation markers for resolutions with project name * Sort distributions when computing hash * Include trampolines in source distributions on Windows * Add --index <name>=<url> syntax to index documentation * Add documentation for using uv with PyTorch * Add a dedicated error for include = "dev" with tool.uv.dev-dependencies * Avoid showing disjoint marker error with true * Improve error message when git is not found * Include extras and dependency groups in derivation chains * Include version constraints in derivation chains OBS-URL: https://build.opensuse.org/request/show/1228409 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-uv?expand=0&rev=8
This commit is contained in:
commit
f806d6df0e
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:14b4ed7c955acdf4ae2b47537addbefb8a486e47cada903970f10e28f40b518c
|
||||
size 2886231
|
3
python-uv-0.5.6.tar.gz
Normal file
3
python-uv-0.5.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7be2246b0f8f54f3746aff1da35bb3bb995974714d7bc625300a0f91d6f5dae4
|
||||
size 2952255
|
@ -1,3 +1,131 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 5 01:30:16 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
|
||||
|
||||
- Update to version 0.5.6:
|
||||
* Add --dry-run to uv pip uninstall
|
||||
* Allow --constraints and --overrides in uv tool install
|
||||
* Display removed Python executables on uninstall
|
||||
* Warn when keyring has no password for uv publish
|
||||
* Add suggested action when .python-version pin is incompatible with the project
|
||||
* Improve error messages for mismatches in tool.uv.sources
|
||||
* Use constraints in trace rather than irrelevant requires-python
|
||||
* Add uv python install --default
|
||||
* Fix Python executable installation when multiple patch versions are requested
|
||||
* Build backend: Revamp include / exclude
|
||||
* Build backend: Add fast path
|
||||
* Build backend: Add functions to collect file list
|
||||
* Build backend: Default excludes
|
||||
* Build backend: Refactoring before list
|
||||
* Build backend: Warn when visiting over 10k files
|
||||
* Make check-url available in configuration files
|
||||
* Avoid adding non-extra package with extra dependencies
|
||||
* Avoid cloning String in marker evaluation
|
||||
* uv-pep508: Add more methods for simplifying extra-related expressions
|
||||
* Allow file: URLs to include package names
|
||||
* Avoid using IDs across PubGrub states
|
||||
* Consistently enforce requested-vs.-built metadata when retrieving wheels
|
||||
* Do not show empty version specifier in uv tool list
|
||||
* Include Git member information when getting metadata from cache
|
||||
* Include base installation directory in uv run PATH
|
||||
* Insert backslash when appending to system drive
|
||||
* Normalize paths when lowering Git dependencies
|
||||
* Omit origin when comparing requirements
|
||||
* Override manylinux_compatible with --python-platform
|
||||
* Pass extra when evaluating lockfile markers
|
||||
* Propagate markers for recursive extras in resolver
|
||||
* Respect path dependencies within Git dependencies
|
||||
* Support recursive extras with marker in pip compile -r pyproject.toml
|
||||
* Don't emit unpinned warning for proxy packages
|
||||
* Fix --refresh-package flag mentioned as --refresh-dependency
|
||||
* Handle Windows AV/EDR file locks during script installations
|
||||
* Re-enable conflicting extra/group tests and fix regression from #9540
|
||||
* Add missing word to docs for run.md
|
||||
* Add policies reference section and license document
|
||||
* Fix typo in entry point docs
|
||||
* Fix up version in prior uninstall instructions
|
||||
* Mention uv pip behavior in build system note
|
||||
* Update build failures document
|
||||
* Correct wording for multiple sources section
|
||||
* Add aliases for build backend requests
|
||||
* Avoid displaying empty paths
|
||||
* Allow constraints in uv tool upgrade
|
||||
* Remove conflict between --no-sync and --frozen in uv run
|
||||
* Respect dependency sources in overrides and constraints
|
||||
* Show an interpreter-focused message for --target and --prefix
|
||||
* Add --no-extra flag and setting
|
||||
* Add uv export --prune
|
||||
* Add dedicated error message for musl install attempts
|
||||
* Add various grammar changes to conflict error messages
|
||||
* Annotate default groups in conflict error messages
|
||||
* Report marker diagnostics during parsing, rather than evaluation
|
||||
* Use consistent formatting for build system errors
|
||||
* Use rich diagnostics for build failures
|
||||
* Improve build backend excludes
|
||||
* Include PEP 639 license-files metadata during uv publish
|
||||
* Initialize rayon lazily
|
||||
* Migrate to PubGrub's arena for package names
|
||||
* Allow dependency groups to include the containing package
|
||||
* Allow syncing to empty virtual environment directories
|
||||
* Allow system Python discovery with --target and --prefix
|
||||
* Don't warn when --output-file is empty
|
||||
* Fix Python interpreter discovery on non-glibc hosts
|
||||
* Fix tool.uv.dependency-metadata.[].version schema
|
||||
* Only respect preferences across the same indexes
|
||||
* Re-compile when --compile is passed to an install operation
|
||||
* Remove --upgrade, --no-upgrade, and --upgrade-package from uv tool upgrade
|
||||
* Remove dev dependencies in --all-groups --no-dev
|
||||
* Surface extras and group conflicts in uv export
|
||||
* Treat deprecated aliases as equivalent in marker algebra
|
||||
* Treat less compatible tags as lower priority in resolver
|
||||
* Avoid referencing scikit-build (instead of scikit-build-core)
|
||||
* Expand entry points documentation
|
||||
* Fix example pyproject.toml in project concept documentation
|
||||
* Fix header level of "Conflicting dependencies" page
|
||||
* Touch-up the extension module guide
|
||||
* Update the dependencies documentation
|
||||
* Reference --no-progress option in related environment variable
|
||||
* Accept either singular or plural values for CLI requirements
|
||||
* Add --all-groups to uv sync, uv run, uv export, and uv tree
|
||||
* Add a progress bar to uv tree --outdated and uv pip list --outdated
|
||||
* Add retries for Python downloads
|
||||
* Use exponential backoff for publish retries
|
||||
* Add manylinux target triples up to glibc 2.40
|
||||
* Parallelize network requests in uv tree --outdated
|
||||
* Use zlib-rs on all platforms
|
||||
* Avoid validating extra and group sources in build-system.requires
|
||||
* Catch retries with wrapped reqwest errors
|
||||
* Sort hashes in uv export output
|
||||
* Strip --index and --default-index from command header
|
||||
* Add breadcrumbs to the documentation
|
||||
* Add minimum version to PyTorch guide
|
||||
* Add support for anchor redirects with client-side js
|
||||
* Improve content on project configuration
|
||||
* Improve the project creation documentation
|
||||
* Move the integration guides into the "Guides" section as a collapsed group
|
||||
* Reorganize the project concept documentation
|
||||
* Use the full screen height for the main content to stabilize the nav
|
||||
* Add dedicated warning for empty stdin
|
||||
* Allow conflicting extras in explicit index assignments
|
||||
* Support overrides and constraints in PEP 723 scripts
|
||||
* Update uv tool install --force to imply --reinstall-package <name>
|
||||
* Turn --verify-hashes on by default
|
||||
* Enable zlib-rs on all platforms
|
||||
* Allow apostrophe in virtual environment name
|
||||
* Automatically retry body errors when processing response
|
||||
* Detect nested workspace inside the current workspace and members with identical names
|
||||
* Only install the specified project with --frozen --package in legacy non-[project] workspaces
|
||||
* Respect [[tool.uv.index]] in PEP 723 scripts
|
||||
* Show derivation markers for resolutions with project name
|
||||
* Sort distributions when computing hash
|
||||
* Include trampolines in source distributions on Windows
|
||||
* Add --index <name>=<url> syntax to index documentation
|
||||
* Add documentation for using uv with PyTorch
|
||||
* Add a dedicated error for include = "dev" with tool.uv.dev-dependencies
|
||||
* Avoid showing disjoint marker error with true
|
||||
* Improve error message when git is not found
|
||||
* Include extras and dependency groups in derivation chains
|
||||
* Include version constraints in derivation chains
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 17 14:42:43 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
%bcond_without libalternatives
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-uv
|
||||
Version: 0.5.2
|
||||
Version: 0.5.6
|
||||
Release: 0
|
||||
Summary: A Python package installer and resolver, written in Rust
|
||||
License: Apache-2.0 OR MIT
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6f450d088658b3a5599340c16a571758d9bfd297ea0159af7558cd44f7c08b17
|
||||
size 56002508
|
||||
oid sha256:e8802c2fb22daecf2b3a2939ee83dad62a73b2d02b598c1bcb78a737989cd1cb
|
||||
size 55895731
|
||||
|
Loading…
Reference in New Issue
Block a user