Accepting request 906059 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/906059 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bokeh?expand=0&rev=30
This commit is contained in:
commit
fc50688194
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dd417708f90702190222b1068a645acae99e66d4b58d7a336d545aeaa04e9b40
|
|
||||||
size 10617724
|
|
3
bokeh-2.4.0.dev1.tar.gz
Normal file
3
bokeh-2.4.0.dev1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e295f90b274fb644020a45fa42442a420207c62f69a07184f077e0317df3fd60
|
||||||
|
size 11602575
|
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 12 13:17:06 UTC 2021 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Update to version 2.4.0.dev1
|
||||||
|
in 2.3.3:
|
||||||
|
* JupyterLab 3 dynamic extension loading
|
||||||
|
* Deprecate broken HSL objects
|
||||||
|
* Simplify rendering of Line and MultiLine glyphs
|
||||||
|
* Replace jinja2.Markup deprecated with Jinja 3.1
|
||||||
|
* Upgrade to Chrome 91 and fix failing examples' tests
|
||||||
|
* Fix data access layout SpatialIndex.bounds()
|
||||||
|
* Restore support for relative font size units
|
||||||
|
just in dev1:
|
||||||
|
* Unify {Figure,Toolbar}.active_* properties
|
||||||
|
* Update to isort 5.8
|
||||||
|
* Add support for polar coordinates
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jun 5 12:55:54 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
Sat Jun 5 12:55:54 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -21,13 +21,13 @@
|
|||||||
# tests suite disabled by default. See below.
|
# tests suite disabled by default. See below.
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: python-bokeh
|
Name: python-bokeh
|
||||||
Version: 2.3.0
|
Version: 2.4.0.dev1
|
||||||
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
|
||||||
URL: https://github.com/bokeh/bokeh/
|
URL: https://github.com/bokeh/bokeh/
|
||||||
Source: https://files.pythonhosted.org/packages/source/b/bokeh/bokeh-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/b/bokeh/bokeh-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module Jinja2 >= 2.7}
|
BuildRequires: %{python_module Jinja2 >= 2.9}
|
||||||
BuildRequires: %{python_module Pillow >= 7.1.0}
|
BuildRequires: %{python_module Pillow >= 7.1.0}
|
||||||
BuildRequires: %{python_module PyYAML >= 3.10}
|
BuildRequires: %{python_module PyYAML >= 3.10}
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
@ -35,20 +35,20 @@ BuildRequires: %{python_module numpy >= 1.11.3}
|
|||||||
BuildRequires: %{python_module packaging >= 16.8}
|
BuildRequires: %{python_module packaging >= 16.8}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module tornado >= 5.1}
|
BuildRequires: %{python_module tornado >= 5.1}
|
||||||
BuildRequires: %{python_module typing_extensions >= 3.7.4}
|
BuildRequires: %{python_module typing_extensions >= 3.10.0}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildConflicts: python-buildservice-tweak
|
BuildConflicts: python-buildservice-tweak
|
||||||
Requires: python-Jinja2 >= 2.7
|
Requires: python-Jinja2 >= 2.9
|
||||||
Requires: python-Pillow >= 7.1.0
|
Requires: python-Pillow >= 7.1.0
|
||||||
Requires: python-PyYAML >= 3.10
|
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-tornado >= 5.1
|
Requires: python-tornado >= 5.1
|
||||||
Requires: python-typing_extensions >= 3.7.4
|
Requires: python-typing_extensions >= 3.10.0
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun):update-alternatives
|
Requires(postun):update-alternatives
|
||||||
|
Recommends: python-python-dateutil
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
@ -59,7 +59,7 @@ BuildRequires: %{python_module mock}
|
|||||||
BuildRequires: %{python_module nbconvert}
|
BuildRequires: %{python_module nbconvert}
|
||||||
BuildRequires: %{python_module networkx}
|
BuildRequires: %{python_module networkx}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module python-dateutil >= 2.1}
|
BuildRequires: %{python_module python-dateutil}
|
||||||
BuildRequires: %{python_module requests}
|
BuildRequires: %{python_module requests}
|
||||||
BuildRequires: %{python_module selenium}
|
BuildRequires: %{python_module selenium}
|
||||||
%endif
|
%endif
|
||||||
|
Loading…
Reference in New Issue
Block a user