-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
“invalid command 'bdist_wheel'” on first execution #10
Comments
Can you please update the run output with https://github.com/tox-dev/tox-uv/releases/tag/1.3.0 using |
I'm having the same problem (I think), perhaps my output can help, too? (Also mac, 3.12)
The first one fails with the output_first.txt The relevant Perhaps more relevant is my |
Oh, I install tools like tox with pipx (and then |
Ok, I think I understand what's happening here. I'm not sure if it's a setuptools or Workarounds for now, either will work:
[build-system]
build-backend = "build"
requires = [ "wheel", "setuptools"]
[testenv:.pkg]
uv_seed = true
deps = wheel
But note that is a recommendation and not a requirement. So who's in wrong here between pyproject-api and setuptools is unclear here. |
Thank you for the investigation. I tried the workarounds. The first works swimmingly, though I’d rather not affect the public install definition if possible. The second one fixes only the Python 3.12 environment, the same Python version that I have tox and uv installed in. It leaves the others still failing with “invalid command 'bdist_wheel'”. I discovered I needed to explicitly list all the [testenv:.pkg{,-cpython311,-cpython310,-cpython39,-cpython38}]
uv_seed = true
deps = wheel For now, I’ll just use the first one without committing. |
Thanks! The first workaround works for me. 👍 btw for trying to get |
I think the only reason this is not failing in tox, is because virtualenv does this patching https://github.com/pypa/virtualenv/blob/main/src/virtualenv/create/via_global_ref/_virtualenv.py#L1. And here we switched to |
This feature is now release https://tox.wiki/en/4.14.0/config.html#fresh_subprocess can give it a go. |
I wanted to test out Perhaps @adamchainz can reproduce the original issue and see if the fix works? |
tox 4.14.1 made So yeah it “just works” now. |
:-) Perfect. Thanks! |
Using macOS, Python 3.12, running the test suite for django-upgrade, which has
package = wheel
.On the first run, environments all fail with:
Full log
On a re-run, environments succeed.
This happens whether or not I add
uv_seed = true
to[testenv]
.The text was updated successfully, but these errors were encountered: