1
0

- Ratchet up bokeh to >= 3.1, since upstream supports it.

- Also BuildRequire sparse for Python 3.11.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-distributed?expand=0&rev=143
This commit is contained in:
Steve Kowalik 2023-06-05 02:15:54 +00:00 committed by Git OBS Bridge
parent d925ca635c
commit daf8ca9531
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jun 5 02:14:02 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Ratchet up bokeh to >= 3.1, since upstream supports it.
- Also BuildRequire sparse for Python 3.11.
------------------------------------------------------------------- -------------------------------------------------------------------
Fri May 26 20:27:38 UTC 2023 - Ben Greiner <code@bnavigator.de> Fri May 26 20:27:38 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@ -85,8 +85,7 @@ Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun):update-alternatives
BuildArch: noarch BuildArch: noarch
%if %{with test} %if %{with test}
# bokeh 3: see gh#dask/distributed#7329, gh#dask/dask#9659, we provide a legacy bokeh2 in Tumbleweed BuildRequires: %{python_module bokeh >= 3.1}
BuildRequires: %{python_module bokeh >= 2.4.2 with %python-bokeh < 2.4.4}
BuildRequires: %{python_module dask-complete = %{version}} BuildRequires: %{python_module dask-complete = %{version}}
BuildRequires: %{python_module distributed = %{version}} BuildRequires: %{python_module distributed = %{version}}
BuildRequires: %{python_module ipykernel} BuildRequires: %{python_module ipykernel}
@ -96,7 +95,7 @@ BuildRequires: %{python_module pytest-rerunfailures}
BuildRequires: %{python_module pytest-timeout} BuildRequires: %{python_module pytest-timeout}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests} BuildRequires: %{python_module requests}
BuildRequires: %{python_module sparse if %python-base < 3.11} BuildRequires: %{python_module sparse}
%if %{with paralleltests} %if %{with paralleltests}
BuildRequires: %{python_module pytest-xdist} BuildRequires: %{python_module pytest-xdist}
%endif %endif
@ -167,6 +166,8 @@ donttest+=" or (test_worker_memory and test_digests)"
donttest+=" or (test_worker_memory and test_pause_while_spilling)" donttest+=" or (test_worker_memory and test_pause_while_spilling)"
# server-side fail due to the non-network warning in a subprocess where the patched filter does not apply # server-side fail due to the non-network warning in a subprocess where the patched filter does not apply
donttest+=" or (test_client and test_quiet_close_process)" donttest+=" or (test_client and test_quiet_close_process)"
# should return > 3, returns 3 exactly
donttest+=" or (test_statistical_profiling_cycle)"
if [[ $(getconf LONG_BIT) -eq 32 ]]; then if [[ $(getconf LONG_BIT) -eq 32 ]]; then
# OverflowError -- https://github.com/dask/distributed/issues/5252 # OverflowError -- https://github.com/dask/distributed/issues/5252
donttest+=" or test_ensure_spilled_immediately" donttest+=" or test_ensure_spilled_immediately"