Skip to content

Commit 06cf5a4

Browse files
fix: use setuptools.build_meta as build backend
setuptools.backends.legacy:build does not exist in setuptools versions shipped with Python 3.10 CI environments. setuptools.build_meta is the correct PEP 517 entry point and has been stable since setuptools 42.
1 parent ad84666 commit 06cf5a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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>=68", "wheel"]
3-
build-backend = "setuptools.backends.legacy:build"
2+
requires = ["setuptools>=42", "wheel"]
3+
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cornet-framework"

0 commit comments

Comments
 (0)