14
0

Accepting request 990409 from home:apritschet:branches:devel:languages:python

- Release 0.6.5: Enhanced dependency management
  * Removed `responses` as requirement
  * Use `cached_property` instead of `backports.cached_property` 
    (which is not in the openSUSE repos)
  * Only install `cached_property` as requirement for Py3.7 and earlier

OBS-URL: https://build.opensuse.org/request/show/990409
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=41
This commit is contained in:
2022-07-20 14:16:04 +00:00
committed by Git OBS Bridge
parent 283cfe1880
commit 349965cda7
4 changed files with 17 additions and 6 deletions

View File

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

3
osc-tiny-0.6.5.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Jul 20 08:49:57 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
- Release 0.6.5: Enhanced dependency management
* Removed `responses` as requirement
* Use `cached_property` instead of `backports.cached_property`
(which is not in the openSUSE repos)
* Only install `cached_property` as requirement for Py3.7 and earlier
-------------------------------------------------------------------
Tue Jul 19 07:01:51 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>

View File

@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-osc-tiny
Version: 0.6.4
Version: 0.6.5
Release: 0
Summary: Client API for openSUSE BuildService
License: MIT
@@ -27,7 +27,6 @@ Group: Development/Languages/Python
URL: https://github.com/crazyscientist/osc-tiny
Source: https://files.pythonhosted.org/packages/source/o/osc-tiny/osc-tiny-%{version}.tar.gz
BuildRequires: %{python_module PyYAML}
BuildRequires: %{python_module cached-property}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module lxml}
BuildRequires: %{python_module pytest}
@@ -39,11 +38,14 @@ BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-PyYAML
Requires: python-cached-property
Requires: python-lxml
Requires: python-python-dateutil
Requires: python-pytz
Requires: python-requests
%if %python_version_nodots < 38
BuildRequires: python3-cached-property
Requires: python-cached-property
%endif
Suggests: openssh
BuildArch: noarch
%python_subpackages