15
0
forked from pool/python-argh

Accepting request 1090450 from home:pgajdos:python

- version update to 0.28.1
  Version 0.28.1
  --------------
  - Fixed bugs in tests (#171, #172)
  Version 0.28.0
  --------------
  A major cleanup.
  Backward incompatible changes:
  - Dropped support for Python 2.7 and 3.7.
  Deprecated features, to be removed in v.0.30:
  - `argh.assembling.SUPPORTS_ALIASES`.
    - Always `True` for recent versions of Python.
  - `argh.io.safe_input()` AKA `argh.interaction.safe_input()`.
    - Not relevant anymore.  Please use the built-in `input()` instead.
  - argument `pre_call` in `dispatch()`.
  - Argument help as annotations.
    - Annotations will only be used for types after v.0.30.
  - Added deprecation warnings for some arguments deprecated back in v.0.26.
  Version 0.27.2
  --------------
  Minor packaging fix:
  * chore: include file required by tox.ini in the sdist (#155)
  Version 0.27.1
  --------------
  Minor building and packaging fixes:
  * docs: add Read the Docs config (#160)
  * chore: include tox.ini in the sdist (#155)
  Version 0.27.0
  --------------
  This is the last version to support Python 2.7.

OBS-URL: https://build.opensuse.org/request/show/1090450
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-argh?expand=0&rev=30
This commit is contained in:
2023-06-05 12:49:23 +00:00
committed by Git OBS Bridge
parent 89b8d4bc65
commit 09bb415b62
6 changed files with 70 additions and 111 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-argh
#
# Copyright (c) 2022 SUSE LLC
# 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
@@ -18,16 +18,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-argh
Version: 0.26.2
Version: 0.28.1
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
Patch0: support-py39.patch
# https://github.com/neithere/argh/issues/152
Patch1: python-argh-no_mock.patch
BuildRequires: %{python_module iocapture}
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
@@ -56,22 +54,23 @@ can be mixed. Keep in mind that argh.dispatch does some extra
work that a custom dispatcher may not do.
%prep
%setup -q -n argh-%{version}
%autopatch -p1
%autosetup -p1 -n argh-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
# 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}-py*.egg-info
%{python_sitelib}/argh-%{version}.dist-info
%changelog