From 4c09c6885082e855d604909bbfabffed1d9c4a894963355434041e744726570d Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 7 Sep 2023 11:01:41 +0000 Subject: [PATCH 1/3] - update to 3.12.3: * Fix import ordering * Exclude dependabot and pre-commit ci from release notes * Create parent directories if necessary - Update to version 3.8.2 - Update to version 3.8.0 * Ownership moved from @benediktschmitt to the tox-dev organization * Accept path types (like pathlib.Path and pathlib.PurePath) in the OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-filelock?expand=0&rev=30 --- filelock-3.12.2.tar.gz | 3 --- filelock-3.12.3.tar.gz | 3 +++ python-filelock.changes | 16 ++++++++++++---- python-filelock.spec | 2 +- 4 files changed, 16 insertions(+), 8 deletions(-) delete mode 100644 filelock-3.12.2.tar.gz create mode 100644 filelock-3.12.3.tar.gz diff --git a/filelock-3.12.2.tar.gz b/filelock-3.12.2.tar.gz deleted file mode 100644 index 874fea0..0000000 --- a/filelock-3.12.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:002740518d8aa59a26b0c76e10fb8c6e15eae825d34b6fdf670333fd7b938d81 -size 12441 diff --git a/filelock-3.12.3.tar.gz b/filelock-3.12.3.tar.gz new file mode 100644 index 0000000..978a1e4 --- /dev/null +++ b/filelock-3.12.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecc1dd2ec4672a10c8550a8182f1bd0c0a5088470ecd5a125e45f49472fac3d +size 13746 diff --git a/python-filelock.changes b/python-filelock.changes index 1dc48cd..ca0b1ab 100644 --- a/python-filelock.changes +++ b/python-filelock.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Thu Sep 7 11:00:28 UTC 2023 - Dirk Müller + +- update to 3.12.3: + * Fix import ordering + * Exclude dependabot and pre-commit ci from release notes + * Create parent directories if necessary + ------------------------------------------------------------------- Tue Jun 20 16:59:32 UTC 2023 - Dirk Müller @@ -70,7 +78,7 @@ Wed Dec 14 08:34:14 UTC 2022 - Daniel Garcia ------------------------------------------------------------------- Tue Dec 13 15:23:18 UTC 2022 - Yogalakshmi Arunachalam -- Update to version 3.8.2 +- Update to version 3.8.2 * What's Changed Bump pypa/gh-action-pypi-publish from 1.5.1 to 1.6.1 by @dependabot in #178 Update the license classifier to "Unlicense" by @jond01 in #180 @@ -88,7 +96,7 @@ Tue Dec 13 15:23:18 UTC 2022 - Yogalakshmi Arunachalam ------------------------------------------------------------------- Wed Oct 12 03:17:50 UTC 2022 - Yogalakshmi Arunachalam -- Update to version 3.8.0 +- Update to version 3.8.0 * [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in #149 * Bump actions/upload-artifact from 2 to 3 by @dependabot in #154 * Bump actions/download-artifact from 2 to 3 by @dependabot in #152 @@ -108,12 +116,12 @@ Wed Oct 12 03:17:50 UTC 2022 - Yogalakshmi Arunachalam Fri Jun 3 15:17:25 UTC 2022 - Markéta Machová - Update to 3.7.1 - * Ownership moved from @benediktschmitt to the tox-dev organization + * Ownership moved from @benediktschmitt to the tox-dev organization (new primary maintainer @gaborbernat) * Raise when trying to acquire in R/O or missing folder * Drop python 2.7, 3.5 and 3.6 support, add type hints * Document asyncio support - * Accept path types (like pathlib.Path and pathlib.PurePath) in the + * Accept path types (like pathlib.Path and pathlib.PurePath) in the constructor for FileLock objects. * Add correct spelling of poll interval parameter for acquire method * Enable use as context decorator diff --git a/python-filelock.spec b/python-filelock.spec index 02ffb3d..01e6589 100644 --- a/python-filelock.spec +++ b/python-filelock.spec @@ -19,7 +19,7 @@ %{?sle15_python_module_pythons} Name: python-filelock -Version: 3.12.2 +Version: 3.12.3 Release: 0 Summary: Platform Independent File Lock in Python License: Unlicense From bb58b1eaa45cd3daada7a65ab0c7605bdddccdee7d01b1672c0f3594f90112eb Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 8 Sep 2023 04:17:38 +0000 Subject: [PATCH 2/3] - Add missing Requires on typing-extensions if < 3.11 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-filelock?expand=0&rev=31 --- python-filelock.changes | 5 +++++ python-filelock.spec | 1 + 2 files changed, 6 insertions(+) diff --git a/python-filelock.changes b/python-filelock.changes index ca0b1ab..a096cb9 100644 --- a/python-filelock.changes +++ b/python-filelock.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Sep 8 04:17:12 UTC 2023 - Steve Kowalik + +- Add missing Requires on typing-extensions if < 3.11 + ------------------------------------------------------------------- Thu Sep 7 11:00:28 UTC 2023 - Dirk Müller diff --git a/python-filelock.spec b/python-filelock.spec index 01e6589..5765d39 100644 --- a/python-filelock.spec +++ b/python-filelock.spec @@ -33,6 +33,7 @@ BuildRequires: %{python_module pytest} BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros +Requires: (python3-typing_extensions >= 4.7.1 if python3-base < 3.11) BuildArch: noarch %python_subpackages From b61dd5103981043abbe11511bf81d970703682c24105260e7eec614483017b68 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 8 Sep 2023 04:26:38 +0000 Subject: [PATCH 3/3] Correct Requires OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-filelock?expand=0&rev=32 --- python-filelock.changes | 2 +- python-filelock.spec | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python-filelock.changes b/python-filelock.changes index a096cb9..8b0337c 100644 --- a/python-filelock.changes +++ b/python-filelock.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Fri Sep 8 04:17:12 UTC 2023 - Steve Kowalik +Fri Sep 8 04:26:16 UTC 2023 - Steve Kowalik - Add missing Requires on typing-extensions if < 3.11 diff --git a/python-filelock.spec b/python-filelock.spec index 5765d39..10ad1e8 100644 --- a/python-filelock.spec +++ b/python-filelock.spec @@ -33,7 +33,9 @@ BuildRequires: %{python_module pytest} BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros -Requires: (python3-typing_extensions >= 4.7.1 if python3-base < 3.11) +%if 0%{?python_version_nodots} < 311 +Requires: python-typing_extensions >= 4.7.1 +%endif BuildArch: noarch %python_subpackages