From 3501e619a04b704af982ec1f6002d6d32c5b45d8 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Thu, 18 Jul 2024 20:08:39 +0200 Subject: [PATCH] Rm `wheel` dep from collections_runtime_pythonpath This build dep never needed to be listed explicitly or for sdists. Additionally, the latest `setuptools` versions vendor it and no longer inject it as a dependency. --- .../ansible-collection-python-dist-boo/pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/test/integration/targets/collections_runtime_pythonpath/ansible-collection-python-dist-boo/pyproject.toml b/test/integration/targets/collections_runtime_pythonpath/ansible-collection-python-dist-boo/pyproject.toml index feec734a6b0e56..509374b535c1db 100644 --- a/test/integration/targets/collections_runtime_pythonpath/ansible-collection-python-dist-boo/pyproject.toml +++ b/test/integration/targets/collections_runtime_pythonpath/ansible-collection-python-dist-boo/pyproject.toml @@ -1,6 +1,5 @@ [build-system] requires = [ "setuptools >= 44", - "wheel", ] build-backend = "setuptools.build_meta"