Accepting request 1035041 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/1035041
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-keyring?expand=0&rev=52
This commit is contained in:
Dominique Leuenberger 2022-11-10 13:21:26 +00:00 committed by Git OBS Bridge
commit ba2cd77ca7
4 changed files with 20 additions and 8 deletions

3
keyring-23.11.0.tar.gz Normal file
View File

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

View File

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

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed Nov 9 14:34:46 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Fix dependencies, remove workaround for gh#jaraco/keyring#526
-------------------------------------------------------------------
Tue Nov 8 17:17:53 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 23.11.0
#603: In libsecret, check that the service is available before declaring viability.
- Update to version 23.10.0
#526: Bump requirement on importlib_metadata to pull in fix for improperly-normalized names on egg-info.
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 30 11:35:42 UTC 2022 - Ben Greiner <code@bnavigator.de> Sun Oct 30 11:35:42 UTC 2022 - Ben Greiner <code@bnavigator.de>

View File

@ -25,7 +25,7 @@
%bcond_with test %bcond_with test
%endif %endif
Name: python-keyring%{psuffix} Name: python-keyring%{psuffix}
Version: 23.9.3 Version: 23.11.0
Release: 0 Release: 0
Summary: System keyring service access from Python Summary: System keyring service access from Python
License: MIT AND Python-2.0 License: MIT AND Python-2.0
@ -41,8 +41,8 @@ BuildRequires: python-rpm-macros
Requires: python-SecretStorage >= 3.2 Requires: python-SecretStorage >= 3.2
Requires: python-jaraco.classes Requires: python-jaraco.classes
Requires: python-jeepney >= 0.4.2 Requires: python-jeepney >= 0.4.2
%if 0%{python_version_nodots} < 310 %if 0%{python_version_nodots} < 312
Requires: python-importlib-metadata >= 3.6 Requires: python-importlib-metadata >= 4.11.4
%endif %endif
Requires(post): update-alternatives Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun):update-alternatives
@ -77,8 +77,6 @@ sed -i '/^#!/d' keyring/cli.py
%if %{with test} %if %{with test}
%check %check
# https://github.com/jaraco/keyring/issues/526
rm -r keyring.egg-info
%pytest %pytest
%endif %endif