Your message dated Wed, 18 Mar 2026 18:17:56 +0000 with message-id <[email protected]> and subject line Bug#1131014: Removed package(s) from unstable has caused the Debian Bug report #1130352, regarding python3-jsonext: please patch-out usage of python3-six to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 1130352: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1130352 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: python3-jsonext Version: 0.4.2-3 Severity: normal Dear maintainer, This project is inactive for about 10 years. This is not a problem by itself if it is still usefull. What is not usefull by itself is "six"; we are trying to slowly remove it. Please consider this trival patch & remove python3-six from build-depends. Greetings Alexandre --- a/jsonext/wrappers.py +++ b/jsonext/wrappers.py @@ -2,7 +2,6 @@ import datetime import re -import six class DecoderWrapper(object): @@ -10,7 +9,7 @@ self._decoder = decoder def _convert_dict(self, v): - return {k: self._convert(v) for k, v in six.iteritems(v)} + return {k: self._convert(v) for k, v in v.items()} def _convert_list(self, v): return [self._convert(v) for v in iter(v)] @@ -35,9 +34,9 @@ return self._convert_dict(value) if isinstance(value, list): return self._convert_list(value) - if isinstance(value, six.text_type): + if isinstance(value, str): return self._convert_text(value) - if isinstance(value, six.integer_types): + if isinstance(value, int): return self._convert_integer(value) if isinstance(value, float): return self._convert_float(value) --- a/setup.py +++ b/setup.py @@ -22,4 +22,4 @@ url='http://github.com/mbr/jsonext', license='MIT', packages=find_packages(exclude=['tests']), - install_requires=['six', 'arrow'], ) + install_requires=['arrow'], )
--- End Message ---
--- Begin Message ---Version: 0.4.2-3+rm Dear submitter, as the package python-jsonext has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/1131014 The version of this package that was in Debian prior to this removal can still be found using https://snapshot.debian.org/. Please note that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]. Debian distribution maintenance software pp. Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---

