forked from pool/python-argh
* Regression: a positional argument with an underscore used in
`@arg` decorator would cause Argh fail on the assembling stage.
* As reported in #204 and #206, the new default name mapping
policy in fact silently changed the CLI API of some scripts:
arguments which were previously translated as CLI options
became optional positionals.
Although the instructions were supplied in the release notes,
the upgrade may not necessarily be intentional, so a waste of
users' time is quite likely.
* To alleviate this, the default value for
`name_mapping_policy` in standard functions has been changed
to `None`; if it's not specified, Argh falls back to the new
default policy, but raises `ArgumentNameMappingError` with
detailed instructions if it sees a non-kwonly argument with a
default value.
* Please specify the policy explicitly in order to avoid this
error if you need to infer optional positionals (``nargs="?"``)
from function signature.
* Regression: certain special values in argument default value
would cause an exception (#204)
* Added a more informative error message when the reason is
likely to be related to the migration from Argh v0.29 to a
version with a new argument name mapping policy.
* A new policy for mapping function arguments to CLI arguments
is used by default
* If you cannot modify the function signature to use kwonly
args for options, please consider explicitly specifying the
legacy name mapping
* The name mapping policy `BY_NAME_IF_HAS_DEFAULT` slightly
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-argh?expand=0&rev=34
77 lines
2.4 KiB
RPMSpec
77 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-argh
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-argh
|
|
Version: 0.30.4
|
|
Release: 0
|
|
Summary: An argparse wrapper
|
|
License: LGPL-3.0-or-later
|
|
URL: https://github.com/neithere/argh/
|
|
Source: https://files.pythonhosted.org/packages/source/a/argh/argh-%{version}.tar.gz
|
|
BuildRequires: %{python_module flit-core}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
This Python module provides a wrapper for argparse with support for hierarchical
|
|
commands that can be bound to modules or classes.
|
|
|
|
Features that argh adds to argparse:
|
|
|
|
* mark a function as a CLI command and specify its arguments before the parser
|
|
is instantiated;
|
|
* nested commands made easy: no messing with subparsers (though they are of
|
|
course used under the hood);
|
|
* infer agrument type from the default value;
|
|
* infer command name from function name;
|
|
* add an alias root command help for the --help argument;
|
|
* enable passing unwrapped arguments to certain functions instead of a
|
|
argparse.Namespace object.
|
|
|
|
Argh is fully compatible with argparse. argh-agnostic and argh-aware code
|
|
can be mixed. Keep in mind that argh.dispatch does some extra
|
|
work that a custom dispatcher may not do.
|
|
|
|
%prep
|
|
%autosetup -p1 -n argh-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# do not run test_integration, which requires dropped iocapture
|
|
rm tests/test_integration.py
|
|
%pytest -v
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%{python_sitelib}/argh/
|
|
%{python_sitelib}/argh-%{version}.dist-info
|
|
|
|
%changelog
|