SHA256
1
0
forked from pool/python-panel

Accepting request 955452 from home:badshah400:branches:devel:languages:python:numeric

* Update to version 0.12.6.
* Bump python-param requirement, at least version 0.12.0 is required.
* Drop %config tag from file installed to /usr/etc in keeping with rpmlintrc recommendation.
* Disable an additional test: test_server; requires network.

OBS-URL: https://build.opensuse.org/request/show/955452
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-panel?expand=0&rev=14
This commit is contained in:
Dirk Mueller 2022-02-20 15:58:30 +00:00 committed by Git OBS Bridge
parent 1a211b644f
commit 2c24d07266
4 changed files with 35 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7e4049b457af6dd548806db3fee593b05a67a14d1f4596ce888217f2a712281
size 13980770

3
panel-0.12.6.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:97e158e8eb941f88d71929407f9455c903b5e18d89969db8ce8af66036f46b53
size 14027392

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Tue Feb 15 23:27:49 UTC 2022 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 0.12.6:
* Always load imported bokeh extensions (gh#holoviz/panel#2957).
* Fix regression rendering HoloViews plotly backend
(gh#holoviz/panel#2961).
* Do not run Ace import on initialization
(gh#holoviz/panel#2959).
* Improve handling of ReactiveHTML cleanup
(gh#holoviz/panel#2974, gh#holoviz/panel#2993).
* Ensure empty Str has same height as non-empty
(gh#holoviz/panel#2981).
* Ensure Tabulator supports grouping on numeric columns
(gh#holoviz/panel#2987).
* Fix Tabulator with multi-index and pagination
(gh#holoviz/panel#2989).
* Allow index as column name in table widgets
(gh#holoviz/panel#2990).
* Ensure TemplateActions component does not have height
(gh#holoviz/panel#2997).
- Bump python-param requirement, at least version 0.12.0 is
required.
- Drop %config tag from file installed to /usr/etc in keeping with
rpmlintrc recommendation.
- Disable an additional test: test_server; requires network.
-------------------------------------------------------------------
Sun Sep 19 10:09:33 UTC 2021 - Ben Greiner <code@bnavigator.de>

View File

@ -1,7 +1,7 @@
#
# spec file
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -29,7 +29,7 @@
%define skip_python36 1
%define modname panel
Name: python-panel%{psuffix}
Version: 0.12.3
Version: 0.12.6
Release: 0
Summary: A high level app and dashboarding solution for Python
License: BSD-3-Clause
@ -40,7 +40,7 @@ Source99: python-panel-rpmlintrc
BuildRequires: %{python_module Markdown}
BuildRequires: %{python_module bleach}
BuildRequires: %{python_module bokeh >= 2.4.0}
BuildRequires: %{python_module param >= 1.10.0}
BuildRequires: %{python_module param >= 1.12.0}
BuildRequires: %{python_module pyct >= 0.4.4}
BuildRequires: %{python_module pyviz-comms >= 0.7.4}
BuildRequires: %{python_module requests}
@ -132,7 +132,7 @@ sed -i "1{s|#!/usr/bin/env python|#!%{__$python}|}" \
%if %{with test}
%check
# DISABLE TESTS REQUIRING NETWORK ACCESS
donttest="test_loading_a_image_from_url or test_image_alt_text or test_image_link_url or test_vtk_pane_from_url or test_vtkjs_pane or test_pdf_embed"
donttest="test_loading_a_image_from_url or test_image_alt_text or test_image_link_url or test_vtk_pane_from_url or test_vtkjs_pane or test_pdf_embed or test_server"
# https://github.com/holoviz/panel/issues/2101
donttest+=" or test_record_modules_not_stdlib"
# flaky async test
@ -159,7 +159,7 @@ donttest+=" or test_server_async_callbacks"
%files -n jupyter-panel
%license LICENSE.txt
%config %{_jupyter_servextension_confdir}/panel-client-jupyter.json
%{_jupyter_servextension_confdir}/panel-client-jupyter.json
%endif