Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 28edc4e5f4 | |||
| 6bfde66816 | |||
| f52dc5ea48 | |||
| f9bd00c153 | |||
| f43323c76e | |||
| 029987dfb2 |
@@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 16 06:40:58 UTC 2026 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||||
|
|
||||||
|
- update to 1.38.0:
|
||||||
|
* Add support for Python 3.14, drop support for Python 3.9
|
||||||
|
* Require pathspec ≥ 1.0.0
|
||||||
|
* Config: Follow gitignore implementation in yaml-files and ignore
|
||||||
|
* Config: Use "mapping" instead of "dict" for user-facing errors
|
||||||
|
* Rule indentation: Fix error message for check-multi-line-strings
|
||||||
|
* Rule quoted-strings: Add quote-type: consistent
|
||||||
|
* Docs: Update the name of BSD ports
|
||||||
|
* Docs: Enhance wording of recursive directory lint in README
|
||||||
|
* Docs: Add Alpine Linux installation instructions in README
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 26 09:48:09 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
Tue Aug 26 09:48:09 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
@@ -6,6 +20,20 @@ Tue Aug 26 09:48:09 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 30 10:54:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Mon Jun 30 10:54:06 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.37.1
|
||||||
|
* Rule ``comments``: tell how many spaces are expected
|
||||||
|
* Rule ``quoted-strings``: Fix ``only-when-needed`` on
|
||||||
|
multiline with backslash
|
||||||
|
* Config: Report if ``rules`` is not a dict
|
||||||
|
* Fix ``test_codec_built_in_equivalent()`` test when run with pytest
|
||||||
|
* CI: Fix TestPyPI "dev0" versions for master commits on tags
|
||||||
|
* Docs: Add links to GitHub repository and releases
|
||||||
|
* Docs: Fix GitLab integration example
|
||||||
|
* Docs: Fix GitLab integration link
|
||||||
|
* Fix the tests badge link on the README
|
||||||
|
- from version 1.37.0
|
||||||
|
* Automatically detect Unicode character encoding of files
|
||||||
|
* Publish pushes to master branch to TestPyPI
|
||||||
- Switch build system from setuptools to pyproject.toml
|
- Switch build system from setuptools to pyproject.toml
|
||||||
* Add python-pip and python-wheel to BuildRequires
|
* Add python-pip and python-wheel to BuildRequires
|
||||||
* Replace %python_build with %pyproject_wheel
|
* Replace %python_build with %pyproject_wheel
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-yamllint
|
# spec file for package python-yamllint
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC and contributors
|
# Copyright (c) 2026 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -23,21 +23,24 @@
|
|||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-yamllint
|
Name: python-yamllint
|
||||||
Version: 1.36.2
|
Version: 1.38.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A linter for YAML files
|
Summary: A linter for YAML files
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/adrienverge/yamllint
|
URL: https://github.com/adrienverge/yamllint
|
||||||
Source: https://files.pythonhosted.org/packages/source/y/yamllint/yamllint-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/y/yamllint/yamllint-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.8}
|
BuildRequires: %{python_module base >= 3.10}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
|
# Runtime dependencies
|
||||||
|
BuildRequires: %{python_module PyYAML}
|
||||||
|
BuildRequires: %{python_module pathspec >= 1.0.0}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-PyYAML
|
Requires: python-PyYAML
|
||||||
Requires: python-pathspec >= 0.5.3
|
Requires: python-pathspec >= 1.0.0
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with libalternatives}
|
%if %{with libalternatives}
|
||||||
BuildRequires: alts
|
BuildRequires: alts
|
||||||
|
|||||||
BIN
yamllint-1.36.2.tar.gz
LFS
BIN
yamllint-1.36.2.tar.gz
LFS
Binary file not shown.
3
yamllint-1.38.0.tar.gz
Normal file
3
yamllint-1.38.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:09e5f29531daab93366bb061e76019d5e91691ef0a40328f04c927387d1d364d
|
||||||
|
size 142446
|
||||||
Reference in New Issue
Block a user