From 7571a3d0c9091cb5a656d87df9e62abb399a37c7c9294f9d3047940e6ecc20ff Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Thu, 12 Sep 2024 05:58:25 +0000 Subject: [PATCH] - Add in multibuild. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pydantic-settings?expand=0&rev=8 --- _multibuild | 3 +++ python-pydantic-settings.changes | 3 ++- python-pydantic-settings.spec | 21 ++++++++++++++++++--- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 _multibuild diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..fcc7b97 --- /dev/null +++ b/_multibuild @@ -0,0 +1,3 @@ + + test + diff --git a/python-pydantic-settings.changes b/python-pydantic-settings.changes index e6e5e63..030347f 100644 --- a/python-pydantic-settings.changes +++ b/python-pydantic-settings.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Tue Sep 10 04:57:57 UTC 2024 - Steve Kowalik +Thu Sep 12 05:57:59 UTC 2024 - Steve Kowalik - Update to 2.4.0: * Fix regex flags accidentally passed as count @@ -9,6 +9,7 @@ Tue Sep 10 04:57:57 UTC 2024 - Steve Kowalik * Add support for short options * Add Azure Key Vault settings source * Add cli_exit_on_error config option +- Add in multibuild. ------------------------------------------------------------------- Mon Jul 1 17:55:58 UTC 2024 - Dirk Müller diff --git a/python-pydantic-settings.spec b/python-pydantic-settings.spec index 6a86ff0..f3fe11d 100644 --- a/python-pydantic-settings.spec +++ b/python-pydantic-settings.spec @@ -16,8 +16,16 @@ # +%global flavor @BUILD_FLAVOR@%{nil} +%if "%{flavor}" == "test" +%define psuffix -test +%bcond_without test +%else +%define psuffix %{nil} +%bcond_with test +%endif %{?sle15_python_module_pythons} -Name: python-pydantic-settings +Name: python-pydantic-settings%{psuffix} Version: 2.4.0 Release: 0 Summary: Settings management using Pydantic @@ -30,12 +38,13 @@ BuildRequires: %{python_module hatchling} BuildRequires: %{python_module pip} BuildRequires: python-rpm-macros # SECTION test requirements -BuildRequires: %{python_module pydantic >= 2.3.0} +%if %{with test} BuildRequires: %{python_module azure-identity >= 1.16} +BuildRequires: %{python_module pydantic-settings == %{version}} BuildRequires: %{python_module pytest-examples} BuildRequires: %{python_module pytest-mock} BuildRequires: %{python_module pytest} -BuildRequires: %{python_module python-dotenv >= 0.21.0} +%endif # /SECTION BuildRequires: fdupes Requires: python-pydantic >= 2.3.0 @@ -55,16 +64,22 @@ Settings management using Pydantic, this is the new official home of Pydantic's %pyproject_wheel %install +%if !%{with test} %pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitelib} +%endif %check +%if %{with test} %pytest +%endif +%if !%{with test} %files %{python_files} %license LICENSE %doc README.md %{python_sitelib}/pydantic_settings %{python_sitelib}/pydantic_settings-%{version}.dist-info +%endif %changelog