From 39119ce6dc3c576eaac6974c690c393ecaee2c2137eb565616a63a7cc9ec5d34 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 9 Nov 2024 16:16:36 +0000 Subject: [PATCH] - update to 1.6.0: * Drop Python 3.8 support. * Support Python 3.13. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-flake8-path?expand=0&rev=5 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + 1.5.0.tar.gz | 3 ++ 1.6.0.tar.gz | 3 ++ python-pytest-flake8-path.changes | 18 +++++++++ python-pytest-flake8-path.spec | 62 +++++++++++++++++++++++++++++++ 6 files changed, 110 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 1.5.0.tar.gz create mode 100644 1.6.0.tar.gz create mode 100644 python-pytest-flake8-path.changes create mode 100644 python-pytest-flake8-path.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/1.5.0.tar.gz b/1.5.0.tar.gz new file mode 100644 index 0000000..9ac8430 --- /dev/null +++ b/1.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd049b867079b22e3ca9021cfd80fa8096ce481588747803b6bebf0c355012a4 +size 9584 diff --git a/1.6.0.tar.gz b/1.6.0.tar.gz new file mode 100644 index 0000000..92a4718 --- /dev/null +++ b/1.6.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02bf92871dd571dd17a16e3e1879b206087db542779ca598b7e59b13385e643c +size 9605 diff --git a/python-pytest-flake8-path.changes b/python-pytest-flake8-path.changes new file mode 100644 index 0000000..843c5bc --- /dev/null +++ b/python-pytest-flake8-path.changes @@ -0,0 +1,18 @@ +------------------------------------------------------------------- +Sat Nov 9 16:16:26 UTC 2024 - Dirk Müller + +- update to 1.6.0: + * Drop Python 3.8 support. + * Support Python 3.13. + +------------------------------------------------------------------- +Mon Jul 24 19:01:06 UTC 2023 - Dirk Müller + +- update to 1.5.0: + * Drop Python 3.7 support. + * Support Python 3.12. + +------------------------------------------------------------------- +Thu Mar 9 07:40:48 UTC 2023 - Daniel Garcia + +- Initial package (version 1.3.0) diff --git a/python-pytest-flake8-path.spec b/python-pytest-flake8-path.spec new file mode 100644 index 0000000..4e6ce4a --- /dev/null +++ b/python-pytest-flake8-path.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-pytest-flake8-path +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%{?sle15_python_module_pythons} +Name: python-pytest-flake8-path +Version: 1.6.0 +Release: 0 +Summary: A pytest fixture for testing flake8 plugins +License: MIT +URL: https://github.com/adamchainz/pytest-flake8-path +Source: https://github.com/adamchainz/pytest-flake8-path/archive/%{version}.tar.gz +BuildRequires: %{python_module pip} +BuildRequires: %{python_module wheel} +BuildRequires: python-rpm-macros +# SECTION test requirements +BuildRequires: %{python_module flake8} +BuildRequires: %{python_module pytest} +# /SECTION +BuildRequires: fdupes +Requires: python-flake8 +Requires: python-pytest +BuildArch: noarch +%python_subpackages + +%description +A pytest fixture for testing flake8 plugins. + +%prep +%autosetup -p1 -n pytest-flake8-path-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/pytest_flake8_path +%{python_sitelib}/pytest_flake8_path-%{version}*-info + +%changelog