15
0

Accepting request 897848 from devel:languages:python

- update to 0.16.1:
  * Add interprocess reader writer lock
  * Improve README
  * remove unused eventlet import
  * use stdlib monotonic instead of external for python >= 3.4
  * Add testing for additional python versions
  * Remove python 2.6 support
  * Remove eventlet dependency and use threading.current_thread instead

OBS-URL: https://build.opensuse.org/request/show/897848
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fasteners?expand=0&rev=9
This commit is contained in:
2021-06-12 18:05:20 +00:00
committed by Git OBS Bridge
4 changed files with 19 additions and 8 deletions

View File

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

3
fasteners-0.16.1.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sun Jun 6 12:26:54 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 0.16.1:
* Add interprocess reader writer lock
* Improve README
* remove unused eventlet import
* use stdlib monotonic instead of external for python >= 3.4
* Add testing for additional python versions
* Remove python 2.6 support
* Remove eventlet dependency and use threading.current_thread instead
-------------------------------------------------------------------
Mon Mar 16 10:34:29 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-fasteners
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,18 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without python2
Name: python-fasteners
Version: 0.14.1
Version: 0.16.1
Release: 0
Summary: A python package that provides useful locks
License: Apache-2.0
URL: https://github.com/harlowja/fasteners
Source: https://files.pythonhosted.org/packages/source/f/fasteners/fasteners-%{version}.tar.gz
BuildRequires: %{python_module monotonic >= 0.1}
BuildRequires: %{python_module diskcache}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module testtools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-monotonic >= 0.1
Requires: python-six
BuildArch: noarch
%if %{with python2}
@@ -62,7 +61,7 @@ It includes the following.
%files %{python_files}
%license LICENSE
%doc ChangeLog README.rst
%doc ChangeLog README.md
%{python_sitelib}/*
%changelog