Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pydantic-settings for
openSUSE:Factory checked in at 2026-08-01 18:28:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pydantic-settings (Old)
and /work/SRC/openSUSE:Factory/.python-pydantic-settings.new.16738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pydantic-settings"
Sat Aug 1 18:28:05 2026 rev:15 rq:1368261 version:2.14.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pydantic-settings/python-pydantic-settings.changes
2026-06-25 11:00:52.684955212 +0200
+++
/work/SRC/openSUSE:Factory/.python-pydantic-settings.new.16738/python-pydantic-settings.changes
2026-08-01 18:28:37.538347932 +0200
@@ -1,0 +2,6 @@
+Tue Jul 28 00:47:57 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-ruff-0.16.patch:
+ * Support changes required by ruff 0.16.
+
+-------------------------------------------------------------------
New:
----
support-ruff-0.16.patch
----------(New B)----------
New:
- Add patch support-ruff-0.16.patch:
* Support changes required by ruff 0.16.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pydantic-settings.spec ++++++
--- /var/tmp/diff_new_pack.bTgsC3/_old 2026-08-01 18:28:38.302372463 +0200
+++ /var/tmp/diff_new_pack.bTgsC3/_new 2026-08-01 18:28:38.306372591 +0200
@@ -32,7 +32,9 @@
License: MIT
URL: https://github.com/pydantic/pydantic-settings
Source:
https://files.pythonhosted.org/packages/source/p/pydantic-settings/pydantic_settings-%{version}.tar.gz
-BuildRequires: %{python_module base >= 3.9}
+# PATCH-FIX-OPENSUSE Support changes required by ruff 0.16
+Patch0: support-ruff-0.16.patch
+BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module hatchling}
BuildRequires: %{python_module pip}
BuildRequires: python-rpm-macros
++++++ support-ruff-0.16.patch ++++++
Index: pydantic_settings-2.14.2/pyproject.toml
===================================================================
--- pydantic_settings-2.14.2.orig/pyproject.toml
+++ pydantic_settings-2.14.2/pyproject.toml
@@ -136,6 +136,7 @@ keep-runtime-typing = true
[tool.ruff.lint]
extend-select = ['Q', 'RUF100', 'C90', 'UP', 'I']
+ignore = ['B015', 'FA102']
flake8-quotes = {inline-quotes = 'single', multiline-quotes = 'double'}
isort = { known-first-party = ['pydantic_settings', 'tests'] }
mccabe = { max-complexity = 14 }
Index: pydantic_settings-2.14.2/docs/index.md
===================================================================
--- pydantic_settings-2.14.2.orig/docs/index.md
+++ pydantic_settings-2.14.2/docs/index.md
@@ -412,7 +412,6 @@ class GenerationConfig(BaseSettings):
)
llm: LLMConfig
- ...
print(GenerationConfig().model_dump())