File: 0006-Stop-depending-on-setuptools-at-runtime.patch

package info (click to toggle)
ros2-ament-index 1.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 556 kB
  • sloc: cpp: 655; python: 594; xml: 44; makefile: 16; sh: 5
file content (21 lines) | stat: -rw-r--r-- 686 bytes parent folder | download
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',