This is an automated email from the ASF dual-hosted git repository. akitouni pushed a commit to branch abderrahim/drop-deps in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git
commit 8e6886add08a2c7e3e0dae148582ede8632bb003 Author: Abderrahim Kitouni <[email protected]> AuthorDate: Fri Mar 27 18:35:31 2026 +0100 pyproject.toml: drop unneeded dependencies We don't use cython here, and PEP 517 doesn't require declaring a dependency on wheel --- pyproject.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2944c29..9b4bdeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,13 +12,8 @@ # limitations under the License. # [build-system] -requires = [ - # We need at least version 36.6.0 that introduced "build_meta" - "setuptools>=36.6.0", - # In order to build wheels, and as required by PEP 517 - "wheel", - "Cython" -] +# We need at least version 36.6.0 that introduced "build_meta" +requires = ["setuptools>=36.6.0"] build-backend = "setuptools.build_meta" [tool.black]
