forked from pool/python-param
- update to version 1.8.1
* Added positional default arguments for nearly all Parameter
subclasses (apart from ClassSelector)
* Minor bugfixes for watching callbacks
- update to version 1.8.0
* Parameterized methods can now declare @depends(p,q) to indicate
that they depend on parameters p and q (defaulting to all
parameters)
* Parameterized methods can depend on subobjects with
@depends(p.param,q.param.r), where p.param indicates
dependencies on all parameters of p and q.param.r indicates a
dependency on parameter r of q.
* Functions and methods can watch parameter values, re-running
when those values change or when an explicit trigger is issued,
and can unwatch them later if needed.
* Multiple events can be batched to trigger callbacks only once
for a coordinated set of changes
* Added support in ObjectSelector for selecting lists and dicts
(#268)
* Added pandas DataFrame and Series parameter types (#285)
* Added support for regular expression validation to String
Parameter (#241, #245)
OBS-URL: https://build.opensuse.org/request/show/662847
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-param?expand=0&rev=15
70 lines
2.3 KiB
RPMSpec
70 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-param
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-param
|
|
Version: 1.8.1
|
|
Release: 0
|
|
Summary: Declarative Python programming using Parameters
|
|
License: BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
URL: http://ioam.github.com/param/
|
|
Source0: https://github.com/ioam/param/archive/v%{version}.tar.gz
|
|
BuildRequires: %{python_module nose}
|
|
BuildRequires: %{python_module numpy}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Recommends: python-numpy
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Param is a library providing Parameters: Python attributes extended to
|
|
have features such as type and range checking, dynamically generated
|
|
values, documentation strings, default values, etc., each of which is
|
|
inherited from parent classes if not specified in a subclass.
|
|
|
|
Param contains only two required Python files, with no external
|
|
dependencies, and is provided freely for both non-commercial and
|
|
commercial use under a BSD license, so that it can easily be included
|
|
as part of other projects.
|
|
|
|
%prep
|
|
%setup -q -n param-%{version}
|
|
sed -i -e 's:version=get_setup_version("param"):version="%{version}":g' setup.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%python_expand nosetests-%{$python_bin_suffix}
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc README.rst
|
|
%{python_sitelib}/param/
|
|
%{python_sitelib}/numbergen/
|
|
%{python_sitelib}/param-%{version}-py*.egg-info
|
|
|
|
%changelog
|