Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-dynaconf for openSUSE:Factory
checked in at 2026-09-11 18:02:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-dynaconf (Old)
and /work/SRC/openSUSE:Factory/.python-dynaconf.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-dynaconf"
Fri Sep 11 18:02:53 2026 rev:16 rq:1377028 version:3.3.5
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-dynaconf/python-dynaconf.changes
2026-08-21 17:00:30.328293521 +0200
+++
/work/SRC/openSUSE:Factory/.python-dynaconf.new.1265/python-dynaconf.changes
2026-09-11 18:06:38.782172999 +0200
@@ -1,0 +2,6 @@
+Fri Sep 11 01:10:29 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-python-315.patch:
+ * Declare support for Python 3.15.
+
+-------------------------------------------------------------------
New:
----
support-python-315.patch
----------(New B)----------
New:
- Add patch support-python-315.patch:
* Declare support for Python 3.15.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-dynaconf.spec ++++++
--- /var/tmp/diff_new_pack.s7JQAY/_old 2026-09-11 18:06:39.447200930 +0200
+++ /var/tmp/diff_new_pack.s7JQAY/_new 2026-09-11 18:06:39.448200972 +0200
@@ -29,6 +29,8 @@
License: MIT
URL: https://github.com/dynaconf/dynaconf
Source:
https://github.com/dynaconf/dynaconf/archive/%{version}.tar.gz#/dynaconf-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM gh#dynaconf/dynaconf#1451
+Patch0: support-python-315.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 42}
BuildRequires: %{python_module wheel}
++++++ support-python-315.patch ++++++
>From da75be93152bd599b819c4d68bd2a90fd1e52da8 Mon Sep 17 00:00:00 2001
From: Nikita Karamov <[email protected]>
Date: Mon, 17 Aug 2026 16:53:47 +0200
Subject: [PATCH 1/3] Declare support for Python 3.15
---
pyproject.toml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 4c0bd47c4..1a6a784ea 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -11,7 +11,7 @@ authors = [
{name = "Bruno Rocha", email = "[email protected]"},
]
license = {text = "MIT"}
-requires-python = ">=3.10,<3.15"
+requires-python = ">=3.10,<3.16"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
@@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
+ "Programming Language :: Python :: 3.15",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
>From 8f12d039d177e756f0a6c47ceedbc4e329403bf2 Mon Sep 17 00:00:00 2001
From: Nikita Karamov <[email protected]>
Date: Mon, 17 Aug 2026 16:54:13 +0200
Subject: [PATCH 2/3] Test on 3.15 in CI
---
.github/workflows/main.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 875e1632d..39c1617ac 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -54,7 +54,7 @@ jobs:
with:
dist-artifact: ${{ needs.build.outputs.dist-artifact }}
python_minimal: '["3.10", "3.14"]'
- python_full: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
+ python_full: '["3.10", "3.11", "3.12", "3.13", "3.14", "3.15-dev"]'
python_latest: '3.14'
secrets: inherit
>From aea0d3ae937bf47d658abaa2ce979168c8cd2773 Mon Sep 17 00:00:00 2001
From: Nikita Karamov <[email protected]>
Date: Tue, 18 Aug 2026 08:58:04 +0200
Subject: [PATCH 3/3] Fix CI version
---
.github/workflows/main.yml | 2 +-
.github/workflows/test.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 39c1617ac..f2585df8a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -54,7 +54,7 @@ jobs:
with:
dist-artifact: ${{ needs.build.outputs.dist-artifact }}
python_minimal: '["3.10", "3.14"]'
- python_full: '["3.10", "3.11", "3.12", "3.13", "3.14", "3.15-dev"]'
+ python_full: '["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]'
python_latest: '3.14'
secrets: inherit
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9971b7931..6fd00efa7 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,7 +16,7 @@ on:
description: 'Full set of Python versions to test'
required: false
type: string
- default: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
+ default: '["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]'
python_latest:
description: 'Latest Python version'
required: false