Accepting request 645325 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/645325
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-flexx?expand=0&rev=2
This commit is contained in:
Dominique Leuenberger 2018-11-10 15:57:31 +00:00 committed by Git OBS Bridge
commit 32df42c3cd
4 changed files with 36 additions and 7 deletions

View File

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

3
flexx-0.6.2.tar.gz Normal file
View File

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

View File

@ -1,3 +1,25 @@
-------------------------------------------------------------------
Mon Oct 29 15:58:48 UTC 2018 - Todd R <toddrme2178@gmail.com>
- Update to version 0.6.2
* Bugfix in combobox.
* BSDF check dtype in JS.
- Update to version 0.6.0
* Add ``Widget.minsize_from_children`` property (#497).
* Update BSDF (data serialization).
* Widgets van be orphaned upon initialization by setting parent to None (#493)
* Some internal improvements on the dropdown widget.
- Update to version 0.5.0
* A major refactoring of the event system.
* We spun out the PyScript transpiler into the PScript project, as well
as the webruntime and dialite project. This means that Flexx itself
is focussed on the GUI aspect alone.
* Added touch support.
* Dropped the depency on Phosphor.js.
* A new combined namespace: ``from flexx import flx``.
* A proper guide in the docs.
* More examples.
-------------------------------------------------------------------
Sat Mar 3 16:15:44 UTC 2018 - jengelh@inai.de

View File

@ -17,16 +17,17 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
# Tests require a web browser
# Test files missing. See https://github.com/flexxui/flexx/pull/508
%bcond_with test
%define skip_python2 1
Name: python-flexx
Version: 0.4.1
Version: 0.6.2
Release: 0
Summary: Python toolkit for creating graphical user interfaces
License: BSD-2-Clause
Group: Development/Languages/Python
Url: http://flexx.readthedocs.io
Source: https://files.pythonhosted.org/packages/source/f/flexx/flexx-%{version}.zip
Source: https://files.pythonhosted.org/packages/source/f/flexx/flexx-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
@ -34,12 +35,18 @@ BuildRequires: python-rpm-macros
BuildRequires: unzip
%if %{with test}
BuildRequires: %{python_module certifi}
BuildRequires: %{python_module dialite}
BuildRequires: %{python_module imageio}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pscript >= 0.6.1}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module tornado >= 4}
BuildRequires: %{python_module webruntime >= 0.5.4}
%endif
Requires: python-tornado >= 4
Requires: python-dialite
Requires: python-tornado
Requires: python-pscript >= 0.6.1
Requires: python-webruntime >= 0.5.4
Recommends: python-imageio
Recommends: python-numpy
Recommends: python-vispy