Accepting request 829622 from home:badshah400:branches:devel:languages:python:numeric
* Update to version 2.2.0. * Add Requires: python-selenium, required for image I/O functions; add to BuildRequires when testing is enabled (doesn't currently work because needs data from the internet). OBS-URL: https://build.opensuse.org/request/show/829622 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-bokeh?expand=0&rev=30
This commit is contained in:
parent
2aa6b9188b
commit
0df5accb82
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2dfabf228f55676b88acc464f416e2b13ee06470a8ad1dd3e609bb789425fbad
|
|
||||||
size 19275547
|
|
3
bokeh-2.2.0.tar.gz
Normal file
3
bokeh-2.2.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d790551db111a2cb43804987bc4da5d5d83124790c30ee4e9e88d4520325e13e
|
||||||
|
size 8843291
|
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 25 19:27:08 UTC 2020 - Atri Bhattacharya <badshah400@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 2.2.0:
|
||||||
|
* Features:
|
||||||
|
- gh#bokeh/bokeh#3653: [component: server] Use a different
|
||||||
|
error for "can't open socket" vs "404".
|
||||||
|
- gh#bokeh/bokeh#6864: [component: bokehjs] DataTable autoEdit
|
||||||
|
expose.
|
||||||
|
- gh#bokeh/bokeh#8595: [component: bokehjs] [Feature request]
|
||||||
|
Allow DataTable to take its natural height.
|
||||||
|
- gh#bokeh/bokeh#8924: [component: bokehjs] Allow to derive
|
||||||
|
ColorBar's low/high from data.
|
||||||
|
- gh#bokeh/bokeh#9169: [FEATURE] SVG export for gridplot.
|
||||||
|
- gh#bokeh/bokeh#9654: [FEATURE] Iterate over submodels of a
|
||||||
|
model and draw submodel graph.
|
||||||
|
- gh#bokeh/bokeh#9956: [component: bokehjs] [FEATURE]
|
||||||
|
varea_stack support in bokehjs.
|
||||||
|
- gh#bokeh/bokeh#10179: [component: bokehjs] [FEATURE] Allow
|
||||||
|
any number in spinner using step=None.
|
||||||
|
- gh#bokeh/bokeh#10265: [FEATURE] Add a DocumentReady event.
|
||||||
|
- gh#bokeh/bokeh#10374: [FEATURE] Allow defining custom format
|
||||||
|
for NaNs in DataTable NumberFormatter.
|
||||||
|
- gh#bokeh/bokeh#10066: [component: bokehjs] Add support for
|
||||||
|
copying canvas to clipboard.
|
||||||
|
- gh#bokeh/bokeh#10353: Enhancements for DataTable.
|
||||||
|
* Bug fixes and tasks: Too many to list, see
|
||||||
|
<https://github.com/bokeh/bokeh/blob/2.2.0/CHANGELOG>.
|
||||||
|
- Add Requires: python-selenium, required for image I/O functions;
|
||||||
|
add to BuildRequires when testing is enabled (doesn't currently
|
||||||
|
work because needs data from the internet).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 24 02:00:53 UTC 2020 - Todd R <toddrme2178@gmail.com>
|
Wed Jun 24 02:00:53 UTC 2020 - Todd R <toddrme2178@gmail.com>
|
||||||
|
|
||||||
|
@ -17,14 +17,14 @@
|
|||||||
|
|
||||||
|
|
||||||
# Tests fail due to missing git data,
|
# Tests fail due to missing git data,
|
||||||
# and building the JS from source doesn't work (tested as of version 2.0.2)
|
# and building the JS from source doesn't work (tested as of version 2.2.0)
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
|
|
||||||
# PACKAGE NO LONGER SUPPORTS PYTHON2
|
# PACKAGE NO LONGER SUPPORTS PYTHON2
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
|
|
||||||
Name: python-bokeh
|
Name: python-bokeh
|
||||||
Version: 2.1.1
|
Version: 2.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Statistical interactive HTML plots for Python
|
Summary: Statistical interactive HTML plots for Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -42,6 +42,7 @@ BuildRequires: %{python_module PyYAML >= 3.10}
|
|||||||
BuildRequires: %{python_module numpy >= 1.11.3}
|
BuildRequires: %{python_module numpy >= 1.11.3}
|
||||||
BuildRequires: %{python_module packaging >= 16.8}
|
BuildRequires: %{python_module packaging >= 16.8}
|
||||||
BuildRequires: %{python_module python-dateutil >= 2.1}
|
BuildRequires: %{python_module python-dateutil >= 2.1}
|
||||||
|
BuildRequires: %{python_module selenium}
|
||||||
BuildRequires: %{python_module tornado >= 5}
|
BuildRequires: %{python_module tornado >= 5}
|
||||||
BuildRequires: %{python_module typing_extensions >= 3.7.4}
|
BuildRequires: %{python_module typing_extensions >= 3.7.4}
|
||||||
%endif
|
%endif
|
||||||
@ -53,6 +54,7 @@ Requires: python-PyYAML >= 3.10
|
|||||||
Requires: python-numpy >= 1.11.3
|
Requires: python-numpy >= 1.11.3
|
||||||
Requires: python-packaging >= 16.8
|
Requires: python-packaging >= 16.8
|
||||||
Requires: python-python-dateutil >= 2.1
|
Requires: python-python-dateutil >= 2.1
|
||||||
|
Requires: python-selenium
|
||||||
Requires: python-tornado >= 5
|
Requires: python-tornado >= 5
|
||||||
Requires: python-typing_extensions >= 3.7.4
|
Requires: python-typing_extensions >= 3.7.4
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
|
Loading…
Reference in New Issue
Block a user