Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tox-dev/tox
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.50.2
Choose a base ref
...
head repository: tox-dev/tox
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.50.3
Choose a head ref
  • 2 commits
  • 6 files changed
  • 3 contributors

Commits on Mar 20, 2026

  1. 🐛 fix(pkg): distinguish free-threaded Python in wheel build env (#3891)

    Running `tox -e py314t` builds the wheel in a `.pkg` environment that
    may use non-free-threaded Python. The `default_wheel_tag` function only
    compared `version_no_dot` and `impl_lower` between the package env and
    target env. Since `version_no_dot` is `"314"` for both `py314` and
    `py314t`, they shared the same `.pkg` environment, producing wheels with
    `cp314` tags instead of `cp314t`. 🐛 `pip install` in the free-threaded
    target env then rejects the wheel as unsupported.
    
    The fix adds `free_threaded` to the compatibility check in
    `default_wheel_tag()` and appends the `t` suffix to the generated
    environment name when the target interpreter is free-threaded (e.g.,
    `.pkg-cpython314t`). This ensures each threading variant gets its own
    build environment with matching wheel tags.
    
    Fixes #3314
    
    ---------
    
    Signed-off-by: Bernát Gábor <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    gaborbernat and pre-commit-ci[bot] authored Mar 20, 2026
    Configuration menu
    Copy the full SHA
    9672736 View commit details
    Browse the repository at this point in the history
  2. release 4.50.3

    gaborbernat committed Mar 20, 2026
    Configuration menu
    Copy the full SHA
    7283912 View commit details
    Browse the repository at this point in the history
Loading