- Add patch support-python312.patch:

* Support logging changes in Python 3.12+.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-json-logger?expand=0&rev=24
This commit is contained in:
Steve Kowalik 2024-02-01 01:19:10 +00:00 committed by Git OBS Bridge
parent 487cafbd9d
commit 2ce6f313d9
3 changed files with 33 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Feb 1 01:18:35 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Add patch support-python312.patch:
* Support logging changes in Python 3.12+.
-------------------------------------------------------------------
Tue Jan 2 22:49:44 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@ -22,9 +22,10 @@ Version: 2.0.7
Release: 0
Summary: A python library adding a json log formatter
License: BSD-2-Clause
Group: Development/Languages/Python
URL: https://github.com/madzak/python-json-logger
Source: https://files.pythonhosted.org/packages/source/p/python-json-logger/python-json-logger-%{version}.tar.gz
# PATCH-FIX-UPSTREAM gh#madzak/python-json-logger#183
Patch0: support-python312.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
@ -52,7 +53,7 @@ A python library adding a json log formatter.
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/python_json_logger-%{version}*-info
%{python_sitelib}/pythonjsonlogger
%{python_sitelib}/python_json_logger-%{version}.dist-info
%changelog

24
support-python312.patch Normal file
View File

@ -0,0 +1,24 @@
From 7c8d06925305c578a1dc7a45d6180c2876cfc082 Mon Sep 17 00:00:00 2001
From: finswimmer <finswimmer77@gmail.com>
Date: Mon, 9 Oct 2023 13:56:38 +0200
Subject: [PATCH] feat: add taskName to RESERVED_ATTRS
taskName was added in Python 3.12
---
src/pythonjsonlogger/jsonlogger.py | 1 +
1 file changed, 1 insertion(+)
Index: python-json-logger-2.0.7/src/pythonjsonlogger/jsonlogger.py
===================================================================
--- python-json-logger-2.0.7.orig/src/pythonjsonlogger/jsonlogger.py
+++ python-json-logger-2.0.7/src/pythonjsonlogger/jsonlogger.py
@@ -21,7 +21,8 @@ RESERVED_ATTRS: Tuple[str, ...] = (
'args', 'asctime', 'created', 'exc_info', 'exc_text', 'filename',
'funcName', 'levelname', 'levelno', 'lineno', 'module',
'msecs', 'message', 'msg', 'name', 'pathname', 'process',
- 'processName', 'relativeCreated', 'stack_info', 'thread', 'threadName')
+ 'processName', 'relativeCreated', 'stack_info', 'thread', 'threadName',
+ 'taskName')