You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setuptools v45.x doesn't support `pyproject.toml` files.
v62.1.x and higher do, and continue to support Python 3.7.
Reproducer:
```
# Create a venv
python -m venv venv-demo
source venv-demo/bin/activate
# Install setuptools and build
python -m pip install setuptools==45.0.0 build
# Build the package using the already-installed setuptools
python -m build --no-isolation
```
This results in the following error:
```
ERROR Backend 'setuptools.build_meta' is not available.
```
Changing the reproducer to use setuptools 61.2.0
demonstrates that the issue is resolved.
0 commit comments