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"