15
0

Accepting request 1277923 from home:ojkastl_buildservice:Branch_devel_languages_python

update to 5.0.0

OBS-URL: https://build.opensuse.org/request/show/1277923
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-click-extra?expand=0&rev=17
This commit is contained in:
2025-05-16 06:20:26 +00:00
committed by Git OBS Bridge
parent a8bbe4f5ed
commit d7fa51c96c
4 changed files with 27 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2086c51c3148edd6c9e009975ce2e70a1ec4cec657edffb29d327a4b5b7d41db
size 514156

3
click-extra-5.0.0.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Fri May 16 04:56:18 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- update to 5.0.0:
* Upgrade to Click 8.2.0.
* Add support for custom deprecated messages on commands and
parameters.
* Remove ExtraOption.get_help_default() and rely on new
Option.get_help_extra().
* Remove dependency on pallets-sphinx-themes.
* Drop supports for Python 3.10.
* Add windows-11-arm to the test matrix.
* Remove tests on ubuntu-22.04-arm, ubuntu-22.04 and windows-2022 to
keep matrix small.
-------------------------------------------------------------------
Wed Mar 5 13:05:44 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>

View File

@@ -19,7 +19,7 @@
%define module_name click-extra
%{?sle15_python_module_pythons}
Name: python-click-extra
Version: 4.15.0
Version: 5.0.0
Release: 0
Summary: Drop-in replacement for Click to make user-friendly and colorful CLI
License: GPL-2.0-or-later
@@ -33,9 +33,9 @@ BuildRequires: %{python_module wheel}
# https://github.com/kdeldycke/click-extra/blob/v4.8.3/pyproject.toml#L67
BuildRequires: %{python_module PyYAML >= 6.0.0}
BuildRequires: %{python_module boltons >= 25.0.0}
BuildRequires: %{python_module click >= 8.1.8}
BuildRequires: %{python_module click >= 8.2.0}
BuildRequires: %{python_module cloup >= 3.0.5}
BuildRequires: %{python_module extra-platforms >= 2.0.0}
BuildRequires: %{python_module extra-platforms >= 3.1.0}
BuildRequires: %{python_module mergedeep >= 1.3.4}
BuildRequires: %{python_module requests >= 2.32.3}
BuildRequires: %{python_module tabulate >= 0.9}
@@ -56,9 +56,9 @@ BuildRequires: python-rpm-macros
# https://github.com/kdeldycke/click-extra/blob/v4.8.3/pyproject.toml#L67
Requires: python-PyYAML >= 6.0.0
Requires: python-boltons >= 25.0.0
Requires: python-click >= 8.1.4
Requires: python-click >= 8.2.0
Requires: python-cloup >= 3.0.5
Requires: python-extra-platforms >= 2.0.0
Requires: python-extra-platforms >= 3.1.0
Requires: python-mergedeep >= 1.3.4
Requires: python-requests >= 2.32.3
Requires: python-tabulate >= 0.9
@@ -88,7 +88,10 @@ BuildArch: noarch
# remove coverage configuration
sed -i '/--cov.*",/d' pyproject.toml
# ignore test that requires network connectivity
%pytest -k 'not (test_ansi_lexers_candidates)'
IGNORED_CHECKS="test_ansi_lexers_candidates"
#
IGNORED_CHECKS="${IGNORED_CHECKS} or test_keyword_collection"
%pytest -k "not (${IGNORED_CHECKS})"
%files %{python_files}
%{python_sitelib}/click_extra