tox-uv
tox-uv copied to clipboard
Use https://github.com/astral-sh/uv with tox
updates: - [github.com/tox-dev/pyproject-fmt: 2.0.3 → 2.1.1](https://github.com/tox-dev/pyproject-fmt/compare/2.0.3...2.1.1)
Follow on from https://github.com/tox-dev/tox-uv/issues/16. I need to hardcode `uv pip` instead of `{envpython} -m pip` when using tox-uv: ```diff commands_pre = - {envpython} -m pip install -r requirements.txt + uv...
My tox.ini contains: ```ini commands_pre = {envpython} -m pip install -r requirements.txt ``` But when installing tox-uv and running `python -m tox -e py -vvv` I get: ```pytb py: 1971...
## Issue I am running the [currency converter](https://github.com/alexprengere/currencyconverter) test suite. I have the latest version of `tox` (4.13) installed globally with `pipx` on the latest Fedora (WSL2 in Windows). I...
updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.7 → v0.6.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.7...v0.6.1)
Signed-off-by: Bernát Gábor
## Issue Tox does not manage to run the tests on the defined Python version list, but it does manage to run the tests on the Python version pinned with...
## Issue Related https://github.com/tox-dev/tox-gh/issues/175 UvVenvLockRunner doesn't call MANAGER.tox_on_install, leading to plugins with tox_on_install not being run properly ## Environment Provide at least: - OS: macos, ubuntu, windows GitHub Action runners...
## Issue Setting both `pip_pre=true` and `uv_resolution=highest` results a garbled install command that includes the requested resolution but does not install pre-release packages. Instead it installs the `allow` package. I...
## Issue When creating a lock file with non-standard resolution, e.g. `uv lock --resolution=lowest-direct` and then when running with `uv-venv-lock-runner`, the run fails due to the `--locked` flag. ## Environment...