Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-ipykernel for openSUSE:Factory checked in at 2024-10-29 14:32:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-ipykernel (Old) and /work/SRC/openSUSE:Factory/.python-ipykernel.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ipykernel" Tue Oct 29 14:32:02 2024 rev:52 rq:1218795 version:6.29.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-ipykernel/python-ipykernel.changes 2024-09-26 18:52:54.384136469 +0200 +++ /work/SRC/openSUSE:Factory/.python-ipykernel.new.2020/python-ipykernel.changes 2024-10-29 14:32:30.906966609 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 11:39:45 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- add py313-warning.patch + +------------------------------------------------------------------- New: ---- py313-warning.patch BETA DEBUG BEGIN: New: - add py313-warning.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-ipykernel.spec ++++++ --- /var/tmp/diff_new_pack.5uDaEZ/_old 2024-10-29 14:32:32.323025347 +0100 +++ /var/tmp/diff_new_pack.5uDaEZ/_new 2024-10-29 14:32:32.327025513 +0100 @@ -24,6 +24,7 @@ License: BSD-3-Clause URL: https://github.com/ipython/ipykernel Source: https://files.pythonhosted.org/packages/source/i/ipykernel/ipykernel-%{version}.tar.gz +Patch1: https://github.com/ipython/ipykernel/commit/b47db6f082ea61e9688b4eca4e92529c1e0e6c45.patch#/py313-warning.patch Provides: python-jupyter_ipykernel = %{version} Obsoletes: python-jupyter_ipykernel < %{version} Provides: %{python_module ipykernel-doc = %{version}} ++++++ py313-warning.patch ++++++ >From b47db6f082ea61e9688b4eca4e92529c1e0e6c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <m...@hroncok.cz> Date: Mon, 1 Jul 2024 15:37:07 +0200 Subject: [PATCH] Avoid a DeprecationWarning on Python 3.13+ (#1248) --- ipykernel/jsonutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipykernel/jsonutil.py b/ipykernel/jsonutil.py index 6a463cf1..e45f06e5 100644 --- a/ipykernel/jsonutil.py +++ b/ipykernel/jsonutil.py @@ -26,7 +26,7 @@ # holy crap, strptime is not threadsafe. # Calling it once at import seems to help. -datetime.strptime("1", "%d") +datetime.strptime("2000-01-01", "%Y-%m-%d") # ----------------------------------------------------------------------------- # Classes and functions