SHA256
1
0
forked from pool/python-panel

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

* Update to version 0.11.0.
* Add BuildRequires: jupyter-notebook-filesystem and install jupyter notebook configuration file.

OBS-URL: https://build.opensuse.org/request/show/876843
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-panel?expand=0&rev=9
This commit is contained in:
Dirk Mueller 2021-03-05 07:50:14 +00:00 committed by Git OBS Bridge
parent 7141cee198
commit ecde6acebd
4 changed files with 81 additions and 5 deletions

View File

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

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

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

View File

@ -1,3 +1,76 @@
-------------------------------------------------------------------
Thu Mar 4 23:08:08 UTC 2021 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 0.11.0:
* Major features:
- A Perspective pane based on the FINOS Perspective library
(gh#holoviz/panel#2034).
- Implement --autoreload functionality for the Panel server
(gh#holoviz/panel#1983).
- Add --warm option to panel serve, useful for pre-loading
items into the state cache (gh#holoviz/panel#1971).
- Add ability to define JS modules and Template specific
resources (gh#holoviz/panel#1967).
- panel.serve now supports serving static files and Bokeh
apps, not just Panel apps (gh#holoviz/panel#1939).
- Add a TrendIndicator for conveniently showing history and
value of a numeric quantity (gh#holoviz/panel#1895).
- Add TextToSpeech widget (gh#holoviz/panel#1878).
- Add SpeechToText widget (gh#holoviz/panel#1880).
- Add loading parameter and spinners to all components
(gh#holoviz/panel#1730, gh#holoviz/panel#2026).
- Add IDOM pane to develop interactive HTML components in
Python (gh#holoviz/panel#2004).
- Add powerful new Tabulator widget for flexible and
configurable display of tabular data (gh#holoviz/panel#1531,
gh#holoviz/panel#1887).
* Enhancements:
- Add watch argument to bind function so that covers all the
features of pn.depends (gh#holoviz/panel#2000).
- Add format parameter to DatetimeRangeInput widget
(gh#holoviz/panel#2043).
- Allow ParamMethod and ParamFunction to evaluate lazily
(gh#holoviz/panel#1966).
- Add value_input parameter to TextInput widgets
(gh#holoviz/panel#2007).
- Implement Glyph3dMapper support for VTK panes
(gh#holoviz/panel#2002, gh#holoviz/panel#2003).
- Add Jupyter server extension to serve resources
(gh#holoviz/panel#1982).
- Enhancements for DarkTheme (gh#holoviz/panel#1964).
- Add refresh functionality to FileSelector
(gh#holoviz/panel#1962).
- Add support for Auth0 authentication
(gh#holoviz/panel#1934).
- Avoid recursive preprocessing slowing down rendering
(gh#holoviz/panel#1852).
- Add support for per-layer tooltips on DeckGL pane
(gh#holoviz/panel#1846).
- Add Viewer baseclass for custom user components
(gh#holoviz/panel#2045).
* Bug fixes:
- Fixed FileSelector file icon on selected files
(gh#holoviz/panel#2046).
- Drop query args when checking URLs (gh#holoviz/panel#2037).
- Fix Card.header_background propagation
(gh#holoviz/panel#2035).
- Disable GoldenTemplate sidebar when empty
(gh#holoviz/panel#2017).
- Ensure Card.collapsed and Accordion.active parameters are
synced (gh#holoviz/panel#2009).
- Fix inline resources when saving (gh#holoviz/panel#1956).
- Switch Param pane widget type when bounds (un)defined
(gh#holoviz/panel#1953).
* Compatibility:
- Compatibility with Bokeh>=2.3 (gh#holoviz/panel#1948,
gh#holoviz/panel#1988, gh#holoviz/panel#1991).
- Updated ECharts pane to 5.0.2 of JS library
(gh#holoviz/panel#2016).
* Documentation: Document pn.bind in API user guide
(gh#holoviz/panel#1973).
- Add BuildRequires: jupyter-notebook-filesystem and install
jupyter notebook configuration file.
-------------------------------------------------------------------
Sun Feb 14 19:58:20 UTC 2021 - Dirk Müller <dmueller@suse.com>

View File

@ -26,10 +26,10 @@
%bcond_with test
%endif
%define skip_python2 1
%define skip_python36 1
%define skip_python36 1
%define modname panel
Name: python-panel%{psuffix}
Version: 0.10.2
Version: 0.11.0
Release: 0
Summary: A high level app and dashboarding solution for Python
License: BSD-3-Clause
@ -46,6 +46,7 @@ BuildRequires: %{python_module requests}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module tqdm}
BuildRequires: fdupes
BuildRequires: jupyter-notebook-filesystem
BuildRequires: nodejs
BuildRequires: python-rpm-macros
%if %{with test}
@ -98,6 +99,7 @@ sed -i '/def _build_paneljs/ a \ return' setup.py
%if ! %{with test}
%install
%python_install
%jupyter_move_config
%{python_expand # FIX HASHBANG AND LINK EXAMPLES INTO PACKAGE DOCS
mkdir examples-%{$python_bin_suffix}
@ -133,6 +135,7 @@ sed -i "1{s|#!/usr/bin/env python|#!%{__$python}|}" \
%python_alternative %{_bindir}/panel
%{python_sitelib}/%{modname}/
%{python_sitelib}/%{modname}-%{version}-py%{python_version}.egg-info/
%config %{_jupyter_servextension_confdir}/panel-client-jupyter.json
%endif
%changelog