Skip to content

Commit 186adfc

Browse files
committed
fix(python): Use setuptools.build_meta instead of legacy backend
The legacy backend (setuptools.backends._legacy:_Backend) was removed in setuptools 70+. Use the modern setuptools.build_meta instead.
1 parent a0d09f1 commit 186adfc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎python/pyproject.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["setuptools>=64", "wheel"]
3-
build-backend = "setuptools.backends._legacy:_Backend"
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "a3m-router"

0 commit comments

Comments
 (0)