From d4c55cc6b93f1ac8d00f1969fecf35e5c0e2c5abf99f3633c62f1bc54e8c48b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Tue, 1 Oct 2024 10:33:15 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main python-debugpy revision 780f6790f36b61138ca8f71afd7652ee --- python-debugpy.changes | 6 ++++++ python-debugpy.spec | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/python-debugpy.changes b/python-debugpy.changes index 041cf24..2b36e76 100644 --- a/python-debugpy.changes +++ b/python-debugpy.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Sep 26 08:15:16 UTC 2024 - Markéta Machová + +- Drop unneeded Django test dependency +- Skip one failing test on aarch64 + ------------------------------------------------------------------- Thu Feb 15 16:18:57 UTC 2024 - Daniel Garcia diff --git a/python-debugpy.spec b/python-debugpy.spec index 98f36a1..7de1a26 100644 --- a/python-debugpy.spec +++ b/python-debugpy.spec @@ -40,7 +40,6 @@ BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: python-rpm-macros %if %{with test} -BuildRequires: %{python_module Django} BuildRequires: %{python_module Flask} BuildRequires: %{python_module debugpy = %{version}} BuildRequires: %{python_module gevent} @@ -126,6 +125,10 @@ donttest="$donttest or test_attach_pid_client" sed -i "s/timeout=30/timeout=60/g" pytest.ini donttest+=" or test_attach_api or test_reattach or test_break_api or test_set_variable or test_unicode or test_debugpySystemInfo or test_debug_this_thread or test_tracing" %endif +# Attach-to-PID is not supported on ARM https://github.com/microsoft/debugpy/issues/1220 +%ifarch aarch64 +donttest+=" or test_reattach" +%endif # Do not have numpy dependency donttest+=" or test_numpy"