Jayant-Kernel Claude Sonnet 4.6 commited on
Fix build backend: use setuptools.build_meta instead of legacy path
Browse filessetuptools.backends.legacy:build is not supported by the pip vendor
bundled with Python 3.14. Classic setuptools.build_meta works cleanly.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- pyproject.toml +1 -1
pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[build-system]
|
| 2 |
requires = ["setuptools>=68", "wheel"]
|
| 3 |
-
build-backend = "setuptools.
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "deceit_env"
|
|
|
|
| 1 |
[build-system]
|
| 2 |
requires = ["setuptools>=68", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "deceit_env"
|