1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Julian Gilbey <jdg@debian.org>
Date: Tue, 28 Oct 2025 12:16:57 -0700
Subject: Install subpackages to fix setuptools deprecation warning
Forwarded: https://github.com/fabioz/PyDev.Debugger/issues/235
Last-Update: 2024-06-30
---
setup.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/setup.py b/setup.py
index d99ea94..985dcd5 100644
--- a/setup.py
+++ b/setup.py
@@ -60,6 +60,11 @@ args = dict(
"pydev_ipython",
# 'pydev_sitecustomize', -- Not actually a package (not added)
"pydevd_attach_to_process",
+ "pydevd_attach_to_process.common",
+ "pydevd_attach_to_process.linux_and_mac",
+ "pydevd_attach_to_process.windows",
+ "pydevd_attach_to_process.winappdbg",
+ "pydevd_attach_to_process.winappdbg.win32",
"pydevd_plugins",
"pydevd_plugins.extensions",
"pydevd_plugins.extensions.types",
|