SHA256
14
0
forked from pool/python-uv

- Update to version 0.4.19

* Remove `PythonPreference` toggle based on `UV_TEST_PYTHON_PATH`
  * Show verbose output during integration tests
  * Show verbose logs during smoke test
  * Show interpreter source during Python discovery query errors
  * Bump patch Python versions for project
  * Basic functional build backend wheels
  * Add 3.13 support to the platform reference
  * Fix parsing of `gnueabi` libc variants in Python version requests
  * Add Python 3.13 classifier
  * Implement build backend metadata
  * Metadata transformation for the build backend
  * Allow self-depedencies in the `dev` section
  * Add failing `uv add --dev` self-reference test
  * Clearly specify the minimum supported Windows Server version in the document
  * fix uninstallation command for windows on documentation
  * Clarify project environment creation a little
  * Remove dead Sha256Reader
  * Ignore `UV_CACHE_DIR` during tests
  * Ignore `UV_CACHE_DIR` in `help` tests
  * Use a higher timeout for publishing
  * Coerce empty string values to `None` for `UV_PYTHON` env var
  * Add `UV_FIND_LINKS` environment variable support for the `--find-links` command-line option
  * Clear publish progress bar on retry
  * Trim commits when reading from Git refs
  * Preserve case-insensitive sorts in `uv add`
  * Fix documentation (projects guide) regarding adding a git dependency
  * Respect project upper bounds when filtering wheels on requires-python
  * Always ignore `cp2` wheels in resolution
  * Allow `py3x-none` tags in newer than Python 3.x

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-uv?expand=0&rev=11
This commit is contained in:
Soc Virnyl Estela
2024-10-07 23:35:42 +00:00
committed by Git OBS Bridge
parent 2498d2ab06
commit 4ba71d8a1e
5 changed files with 93 additions and 6 deletions

View File

@@ -1,3 +1,90 @@
-------------------------------------------------------------------
Mon Oct 7 23:27:10 UTC 2024 - Soc Virnyl Estela <obs@uncomfyhalomacro.pl>
- Update to version 0.4.19
* Remove `PythonPreference` toggle based on `UV_TEST_PYTHON_PATH`
* Show verbose output during integration tests
* Show verbose logs during smoke test
* Show interpreter source during Python discovery query errors
* Bump patch Python versions for project
* Basic functional build backend wheels
* Add 3.13 support to the platform reference
* Fix parsing of `gnueabi` libc variants in Python version requests
* Add Python 3.13 classifier
* Implement build backend metadata
* Metadata transformation for the build backend
* Allow self-depedencies in the `dev` section
* Add failing `uv add --dev` self-reference test
* Clearly specify the minimum supported Windows Server version in the document
* fix uninstallation command for windows on documentation
* Clarify project environment creation a little
* Remove dead Sha256Reader
* Ignore `UV_CACHE_DIR` during tests
* Ignore `UV_CACHE_DIR` in `help` tests
* Use a higher timeout for publishing
* Coerce empty string values to `None` for `UV_PYTHON` env var
* Add `UV_FIND_LINKS` environment variable support for the `--find-links` command-line option
* Clear publish progress bar on retry
* Trim commits when reading from Git refs
* Preserve case-insensitive sorts in `uv add`
* Fix documentation (projects guide) regarding adding a git dependency
* Respect project upper bounds when filtering wheels on requires-python
* Always ignore `cp2` wheels in resolution
* Allow `py3x-none` tags in newer than Python 3.x
* Organize downloads by prioritizing the platform, then the architecture.
* Simplify supported environments when comparing to lockfile
* Improve legibility of build failure errors
* Check `python/uv/` folder with `mypy`
* Remove the first empty line for `uv tree --package foo`
* Fix Python prerelease sorting
* Add CPython 3.13.0rc3 and 3.12.7 downloads
* Use an enum for free-threaded Python requests
* Rename `project::FoundInterpreter` to `ProjectInterpreter`
* Support uv run --script
* Display the target virtual environment path if non-default
* Add missing bound on tomli tests
* Fix code block title in Gitlab integration docs
* Remove unnecessary `Deserialize` derives on settings
* Rename `install-wheel-rs` library
* Add `uv-` prefix to all internal crates
* Clarify locking and resolving without package name
* GitLab Integration documentation
* Respect `PAGER` env var when paging in `uv help` command
* Improve error message copy for failed builds
* Use build failure hints for `dotenv` errors, rather than in `uv add`
* Accept `git+` prefix in `tool.uv.sources`
* Add detailed errors for `tool.uv.sources` deserialization failures
* Remove pyo3 feature from pep440 and pep508 crates
* Use `uv publish` instead of twine in docs
* Reduce file reading boilerplace in tests
* Follow-up: Add gitignore to dist directory
* Add gitignore to dist directory
* expose `FlatDistributions` struct in public API
* Add gitignore to dist directory
* Remove unnecessary index location methods
* Respect `tool.uv.environments` for legacy virtual workspace roots
* Use `serde-untagged` to improve some untagged enum error messages
* packaged app: use executable named for the project and main function
* chore(renovate): enable `regex` manager
* Allow multiple source entries for each package in `tool.uv.sources`
* Add a custom suggestion for `uv add dotenv`
* Fix `uv tree --invert` for platform dependencies
* Allow spaces in path requirements
* `uv build` builds into a top-level `dist` dir in workspaces
* Remove lossy resolution-to-requirements conversion in install plan
* Update documentation to setup-uv@v3
* ✏️ Fix typo in `projects.md`
* Avoid reusing cached downloaded binaries with `--no-binary`
* Use file stem when parsing cached wheel names
* No jemalloc on freebsd
* Correctly trims values during wheel WHEEL file parsing
* Reject self-dependencies in `uv add`
* Retain empty extras on workspace members
* Add `UV_NO_SYNC` environment variable
* Support `uv run -m foo` to run a module
* Fix encoding mismatch between python child process and uv
* Fix table of contents sizing
-------------------------------------------------------------------
Tue Oct 1 06:30:40 UTC 2024 - Soc Virnyl Estela <obs@uncomfyhalomacro.pl>