Jayant-Kernel Claude Sonnet 4.6 commited on
Commit
db07765
·
unverified ·
1 Parent(s): 139d3d1

Fix build backend: use setuptools.build_meta instead of legacy path

Browse files

setuptools.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>

Files changed (1) hide show
  1. pyproject.toml +1 -1
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [build-system]
2
  requires = ["setuptools>=68", "wheel"]
3
- build-backend = "setuptools.backends.legacy:build"
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"