1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Sat, 13 Sep 2025 14:59:24 +0200
Subject: Stop depending on setuptools at runtime
---
ament_index_python/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ament_index_python/setup.py b/ament_index_python/setup.py
index 3ef2e9d..d114e33 100644
--- a/ament_index_python/setup.py
+++ b/ament_index_python/setup.py
@@ -17,7 +17,7 @@ setup(
['resource/' + package_name]),
],
package_data={'': ['py.typed']},
- install_requires=['setuptools'],
+ setup_requires=['setuptools'],
zip_safe=True,
author='Dirk Thomas',
author_email='dthomas@osrfoundation.org',
|