Your message dated Sun, 24 Nov 2024 17:42:50 +0000
with message-id <e1tfgdg-00f0kb...@fasolo.debian.org>
and subject line Bug#1056531: fixed in spyder-kernels 3.0.1-1
has caused the Debian Bug report #1056531,
regarding spyder-kernels: cannot handle Cython files with Python 3.12
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 ow...@bugs.debian.org
immediately.)


-- 
1056531: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1056531
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:spyder-kernels
Version: 2.4.4-2
Severity: important
Tags: sid trixie
User: debian-pyt...@lists.debian.org
Usertags: python3.12

spyder-kernels autopkg tests fail with Python 3.12:

[...]
354s =================================== FAILURES =================================== 354s _____________________________ test_umr_skip_cython _____________________________
354s
354s user_module = <function user_module.<locals>.create_module at 0x7f3c00450e00>
354s
354s     def test_umr_skip_cython(user_module):
354s         """
354s         Test that the UMR doesn't try to reload modules when Cython
354s         support is active.
354s         """
354s         # Create user module
354s         user_module('foo')
354s
354s         # Activate Cython support
354s         os.environ['SPY_RUN_CYTHON'] = 'True'
354s
354s         # Create UMR
354s >       umr = UserModuleReloader()
354s
354s spyder_kernels/customize/tests/test_umr.py:55:
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s spyder_kernels/customize/umr.py:61: in __init__
354s     self.activate_cython()
354s spyder_kernels/customize/umr.py:107: in activate_cython
354s     import pyximport
354s /usr/lib/python3/dist-packages/pyximport/__init__.py:1: in <module>
354s     from .pyximport import *
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s
354s     """
354s Import hooks; when installed with the install() function, these hooks
354s     allow importing .pyx files as if they were Python modules.
354s
354s     If you want the hook installed every time you run Python
354s     you can add it to your Python version by adding these lines to
354s sitecustomize.py (which you can create from scratch in site-packages
354s     if it doesn't exist there or somewhere else on your python path)::
354s
354s         import pyximport
354s         pyximport.install()
354s
354s For instance on the Mac with a non-system Python 2.3, you could create
354s     sitecustomize.py with only those two lines at
354s     /usr/local/lib/python2.3/site-packages/sitecustomize.py .
354s
354s     A custom distutils.core.Extension instance and setup() args
354s (Distribution) for for the build can be defined by a <modulename>.pyxbld
354s     file like:
354s
354s     # examplemod.pyxbld
354s     def make_ext(modname, pyxfilename):
354s         from distutils.extension import Extension
354s         return Extension(name = modname,
354s                          sources=[pyxfilename, 'hello.c'],
354s                          include_dirs=['/myinclude'] )
354s     def make_setup_args():
354s         return dict(script_args=["--compiler=mingw32"])
354s
354s     Extra dependencies can be defined by a <modulename>.pyxdep .
354s     See README.
354s
354s Since Cython 0.11, the :mod:`pyximport` module also has experimental
354s     compilation support for normal Python modules.  This allows you to
354s     automatically run Cython on every .pyx and .py module that Python
354s     imports, including parts of the standard library and installed
354s packages. Cython will still fail to compile a lot of Python modules,
354s     in which case the import mechanism will fall back to loading the
354s Python source modules instead. The .py import mechanism is installed
354s     like this::
354s
354s         pyximport.install(pyimport = True)
354s
354s Running this module as a top-level script will run a test and then print
354s     the documentation.
354s
354s This code is based on the Py2.3+ import protocol as described in PEP 302.
354s     """
354s
354s     import glob
354s >   import imp
354s E   ModuleNotFoundError: No module named 'imp'
354s
354s /usr/lib/python3/dist-packages/pyximport/pyximport.py:51: ModuleNotFoundError 354s _________________________________ test_umr_run _________________________________
354s
354s user_module = <function user_module.<locals>.create_module at 0x7f3bf33e8040>
354s
354s     def test_umr_run(user_module):
354s         """Test that UMR's run method is working correctly."""
354s         # Create user module
354s         user_module('foo1')
354s
354s         # Activate verbose mode in the UMR
354s         os.environ['SPY_UMR_VERBOSE'] = 'True'
354s
354s         # Create UMR
354s >       umr = UserModuleReloader()
354s
354s spyder_kernels/customize/tests/test_umr.py:73:
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s spyder_kernels/customize/umr.py:61: in __init__
354s     self.activate_cython()
354s spyder_kernels/customize/umr.py:107: in activate_cython
354s     import pyximport
354s /usr/lib/python3/dist-packages/pyximport/__init__.py:1: in <module>
354s     from .pyximport import *
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s
354s     """
354s Import hooks; when installed with the install() function, these hooks
354s     allow importing .pyx files as if they were Python modules.
354s
354s     If you want the hook installed every time you run Python
354s     you can add it to your Python version by adding these lines to
354s sitecustomize.py (which you can create from scratch in site-packages
354s     if it doesn't exist there or somewhere else on your python path)::
354s
354s         import pyximport
354s         pyximport.install()
354s
354s For instance on the Mac with a non-system Python 2.3, you could create
354s     sitecustomize.py with only those two lines at
354s     /usr/local/lib/python2.3/site-packages/sitecustomize.py .
354s
354s     A custom distutils.core.Extension instance and setup() args
354s (Distribution) for for the build can be defined by a <modulename>.pyxbld
354s     file like:
354s
354s     # examplemod.pyxbld
354s     def make_ext(modname, pyxfilename):
354s         from distutils.extension import Extension
354s         return Extension(name = modname,
354s                          sources=[pyxfilename, 'hello.c'],
354s                          include_dirs=['/myinclude'] )
354s     def make_setup_args():
354s         return dict(script_args=["--compiler=mingw32"])
354s
354s     Extra dependencies can be defined by a <modulename>.pyxdep .
354s     See README.
354s
354s Since Cython 0.11, the :mod:`pyximport` module also has experimental
354s     compilation support for normal Python modules.  This allows you to
354s     automatically run Cython on every .pyx and .py module that Python
354s     imports, including parts of the standard library and installed
354s packages. Cython will still fail to compile a lot of Python modules,
354s     in which case the import mechanism will fall back to loading the
354s Python source modules instead. The .py import mechanism is installed
354s     like this::
354s
354s         pyximport.install(pyimport = True)
354s
354s Running this module as a top-level script will run a test and then print
354s     the documentation.
354s
354s This code is based on the Py2.3+ import protocol as described in PEP 302.
354s     """
354s
354s     import glob
354s >   import imp
354s E   ModuleNotFoundError: No module named 'imp'
354s
354s /usr/lib/python3/dist-packages/pyximport/pyximport.py:51: ModuleNotFoundError 354s __________________________ test_umr_previous_modules ___________________________
354s
354s user_module = <function user_module.<locals>.create_module at 0x7f3bf33e8900>
354s
354s     def test_umr_previous_modules(user_module):
354s         """Test that UMR's previos_modules is working as expected."""
354s         # Create user module
354s         user_module('foo2')
354s
354s         # Create UMR
354s >       umr = UserModuleReloader()
354s
354s spyder_kernels/customize/tests/test_umr.py:86:
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s spyder_kernels/customize/umr.py:61: in __init__
354s     self.activate_cython()
354s spyder_kernels/customize/umr.py:107: in activate_cython
354s     import pyximport
354s /usr/lib/python3/dist-packages/pyximport/__init__.py:1: in <module>
354s     from .pyximport import *
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s
354s     """
354s Import hooks; when installed with the install() function, these hooks
354s     allow importing .pyx files as if they were Python modules.
354s
354s     If you want the hook installed every time you run Python
354s     you can add it to your Python version by adding these lines to
354s sitecustomize.py (which you can create from scratch in site-packages
354s     if it doesn't exist there or somewhere else on your python path)::
354s
354s         import pyximport
354s         pyximport.install()
354s
354s For instance on the Mac with a non-system Python 2.3, you could create
354s     sitecustomize.py with only those two lines at
354s     /usr/local/lib/python2.3/site-packages/sitecustomize.py .
354s
354s     A custom distutils.core.Extension instance and setup() args
354s (Distribution) for for the build can be defined by a <modulename>.pyxbld
354s     file like:
354s
354s     # examplemod.pyxbld
354s     def make_ext(modname, pyxfilename):
354s         from distutils.extension import Extension
354s         return Extension(name = modname,
354s                          sources=[pyxfilename, 'hello.c'],
354s                          include_dirs=['/myinclude'] )
354s     def make_setup_args():
354s         return dict(script_args=["--compiler=mingw32"])
354s
354s     Extra dependencies can be defined by a <modulename>.pyxdep .
354s     See README.
354s
354s Since Cython 0.11, the :mod:`pyximport` module also has experimental
354s     compilation support for normal Python modules.  This allows you to
354s     automatically run Cython on every .pyx and .py module that Python
354s     imports, including parts of the standard library and installed
354s packages. Cython will still fail to compile a lot of Python modules,
354s     in which case the import mechanism will fall back to loading the
354s Python source modules instead. The .py import mechanism is installed
354s     like this::
354s
354s         pyximport.install(pyimport = True)
354s
354s Running this module as a top-level script will run a test and then print
354s     the documentation.
354s
354s This code is based on the Py2.3+ import protocol as described in PEP 302.
354s     """
354s
354s     import glob
354s >   import imp
354s E   ModuleNotFoundError: No module named 'imp'
354s
354s /usr/lib/python3/dist-packages/pyximport/pyximport.py:51: ModuleNotFoundError 354s ______________________________ test_umr_namelist _______________________________
354s
354s     def test_umr_namelist():
354s         """Test that the UMR skips modules according to its name."""
354s >       umr = UserModuleReloader()
354s
354s spyder_kernels/customize/tests/test_umr.py:95:
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s spyder_kernels/customize/umr.py:61: in __init__
354s     self.activate_cython()
354s spyder_kernels/customize/umr.py:107: in activate_cython
354s     import pyximport
354s /usr/lib/python3/dist-packages/pyximport/__init__.py:1: in <module>
354s     from .pyximport import *
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s
354s     """
354s Import hooks; when installed with the install() function, these hooks
354s     allow importing .pyx files as if they were Python modules.
354s
354s     If you want the hook installed every time you run Python
354s     you can add it to your Python version by adding these lines to
354s sitecustomize.py (which you can create from scratch in site-packages
354s     if it doesn't exist there or somewhere else on your python path)::
354s
354s         import pyximport
354s         pyximport.install()
354s
354s For instance on the Mac with a non-system Python 2.3, you could create
354s     sitecustomize.py with only those two lines at
354s     /usr/local/lib/python2.3/site-packages/sitecustomize.py .
354s
354s     A custom distutils.core.Extension instance and setup() args
354s (Distribution) for for the build can be defined by a <modulename>.pyxbld
354s     file like:
354s
354s     # examplemod.pyxbld
354s     def make_ext(modname, pyxfilename):
354s         from distutils.extension import Extension
354s         return Extension(name = modname,
354s                          sources=[pyxfilename, 'hello.c'],
354s                          include_dirs=['/myinclude'] )
354s     def make_setup_args():
354s         return dict(script_args=["--compiler=mingw32"])
354s
354s     Extra dependencies can be defined by a <modulename>.pyxdep .
354s     See README.
354s
354s Since Cython 0.11, the :mod:`pyximport` module also has experimental
354s     compilation support for normal Python modules.  This allows you to
354s     automatically run Cython on every .pyx and .py module that Python
354s     imports, including parts of the standard library and installed
354s packages. Cython will still fail to compile a lot of Python modules,
354s     in which case the import mechanism will fall back to loading the
354s Python source modules instead. The .py import mechanism is installed
354s     like this::
354s
354s         pyximport.install(pyimport = True)
354s
354s Running this module as a top-level script will run a test and then print
354s     the documentation.
354s
354s This code is based on the Py2.3+ import protocol as described in PEP 302.
354s     """
354s
354s     import glob
354s >   import imp
354s E   ModuleNotFoundError: No module named 'imp'
354s
354s /usr/lib/python3/dist-packages/pyximport/pyximport.py:51: ModuleNotFoundError 354s ___________________________ test_umr_reload_modules ____________________________
354s
354s user_module = <function user_module.<locals>.create_module at 0x7f3bf33e9620>
354s
354s     def test_umr_reload_modules(user_module):
354s         """Test that the UMR only tries to reload user modules."""
354s         # Create user module
354s         user_module('foo3')
354s
354s         # Create UMR
354s >       umr = UserModuleReloader()
354s
354s spyder_kernels/customize/tests/test_umr.py:109:
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s spyder_kernels/customize/umr.py:61: in __init__
354s     self.activate_cython()
354s spyder_kernels/customize/umr.py:107: in activate_cython
354s     import pyximport
354s /usr/lib/python3/dist-packages/pyximport/__init__.py:1: in <module>
354s     from .pyximport import *
354s _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
354s
354s     """
354s Import hooks; when installed with the install() function, these hooks
354s     allow importing .pyx files as if they were Python modules.
354s
354s     If you want the hook installed every time you run Python
354s     you can add it to your Python version by adding these lines to
354s sitecustomize.py (which you can create from scratch in site-packages
354s     if it doesn't exist there or somewhere else on your python path)::
354s
354s         import pyximport
354s         pyximport.install()
354s
354s For instance on the Mac with a non-system Python 2.3, you could create
354s     sitecustomize.py with only those two lines at
354s     /usr/local/lib/python2.3/site-packages/sitecustomize.py .
354s
354s     A custom distutils.core.Extension instance and setup() args
354s (Distribution) for for the build can be defined by a <modulename>.pyxbld
354s     file like:
354s
354s     # examplemod.pyxbld
354s     def make_ext(modname, pyxfilename):
354s         from distutils.extension import Extension
354s         return Extension(name = modname,
354s                          sources=[pyxfilename, 'hello.c'],
354s                          include_dirs=['/myinclude'] )
354s     def make_setup_args():
354s         return dict(script_args=["--compiler=mingw32"])
354s
354s     Extra dependencies can be defined by a <modulename>.pyxdep .
354s     See README.
354s
354s Since Cython 0.11, the :mod:`pyximport` module also has experimental
354s     compilation support for normal Python modules.  This allows you to
354s     automatically run Cython on every .pyx and .py module that Python
354s     imports, including parts of the standard library and installed
354s packages. Cython will still fail to compile a lot of Python modules,
354s     in which case the import mechanism will fall back to loading the
354s Python source modules instead. The .py import mechanism is installed
354s     like this::
354s
354s         pyximport.install(pyimport = True)
354s
354s Running this module as a top-level script will run a test and then print
354s     the documentation.
354s
354s This code is based on the Py2.3+ import protocol as described in PEP 302.
354s     """
354s
354s     import glob
354s >   import imp
354s E   ModuleNotFoundError: No module named 'imp'
354s
354s /usr/lib/python3/dist-packages/pyximport/pyximport.py:51: ModuleNotFoundError 354s =============================== warnings summary ===============================
354s ../../../usr/lib/python3/dist-packages/dateutil/tz/tz.py:37
354s /usr/lib/python3/dist-packages/dateutil/tz/tz.py:37: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
354s     EPOCH = datetime.datetime.utcfromtimestamp(0)
354s
354s ../../../usr/lib/python3/dist-packages/jupyter_client/connect.py:27
354s /usr/lib/python3/dist-packages/jupyter_client/connect.py:27: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs
354s   given by the platformdirs library.  To remove this warning and
354s   see the appropriate new directories, set the environment variable
354s   `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`.
354s   The use of platformdirs will be the default in `jupyter_core` v6
354s     from jupyter_core.paths import jupyter_data_dir
354s
354s ../../../usr/lib/python3/dist-packages/pytz/__init__.py:30
354s /usr/lib/python3/dist-packages/pytz/__init__.py:30: SyntaxWarning: invalid escape sequence '\s'
354s     match = re.match("^#\s*version\s*([0-9a-z]*)\s*$", line)
354s
354s spyder_kernels/console/tests/test_console_kernel.py: 70 warnings
354s /usr/lib/python3/dist-packages/jupyter_client/session.py:203: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
354s     return datetime.utcnow().replace(tzinfo=utc)
354s
354s spyder_kernels/console/tests/test_console_kernel.py::test_magics
354s /usr/lib/python3/dist-packages/IPython/core/history.py:570: DeprecationWarning: The default datetime adapter is deprecated as of Python 3.12; see the sqlite3 documentation for suggested replacement recipes
354s     cur = conn.execute(
354s
354s spyder_kernels/console/tests/test_console_kernel.py::test_load_data
354s spyder_kernels/console/tests/test_console_kernel.py::test_save_namespace 354s spyder_kernels/utils/tests/test_iofuncs.py::test_spydata_import[export_data.spydata] 354s spyder_kernels/utils/tests/test_iofuncs.py::test_spydata_import[export_data_renamed.spydata] 354s spyder_kernels/utils/tests/test_iofuncs.py::test_spydata_import_witherror 354s spyder_kernels/utils/tests/test_iofuncs.py::test_spydata_export[spydata_values-spydata_values-export_data_copy] 354s spyder_kernels/utils/tests/test_iofuncs.py::test_spydata_export[namespace_objects_full-namespace_objects_filtered-export_data_2] 354s /usr/lib/python3.12/tarfile.py:2220: DeprecationWarning: Python 3.14 will, by default, filter extracted tar archives and reject files or modify their metadata. Use the filter argument to control this behavior.
354s     warnings.warn(
354s
354s spyder_kernels/utils/tests/test_nsview.py::test_get_type_string
354s /tmp/autopkgtest.XBSlhD/autopkgtest_tmp/spyder_kernels/utils/tests/test_nsview.py:345: PendingDeprecationWarning: the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use regular ndarray.
354s     matrix = np.matrix([[1, 2], [3, 4]])
354s
354s spyder_kernels/utils/tests/test_nsview.py::test_is_editable_type
354s /tmp/autopkgtest.XBSlhD/autopkgtest_tmp/spyder_kernels/utils/tests/test_nsview.py:400: PendingDeprecationWarning: the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use regular ndarray.
354s     matrix = np.matrix([[1, 2], [3, 4]])
354s
354s spyder_kernels/utils/tests/test_nsview.py::test_get_numpy_type
354s /tmp/autopkgtest.XBSlhD/autopkgtest_tmp/spyder_kernels/utils/tests/test_nsview.py:438: PendingDeprecationWarning: the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use regular ndarray.
354s     matrix = np.matrix([[1, 2], [3, 4]])
354s
354s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
354s ===Flaky Test Report===
354s
354s test_cwd_in_sys_path passed 1 out of the required 1 times. Success!
354s test_multiprocessing passed 1 out of the required 1 times. Success!
354s test_multiprocessing_2 passed 1 out of the required 1 times. Success!
354s test_runfile passed 1 out of the required 1 times. Success!
354s test_np_threshold passed 1 out of the required 1 times. Success!
354s test_matplotlib_inline passed 1 out of the required 1 times. Success!
354s test_debug_namespace passed 1 out of the required 1 times. Success!
354s
354s ===End Flaky Test Report===
354s =========================== short test summary info ============================ 354s FAILED spyder_kernels/customize/tests/test_umr.py::test_umr_skip_cython - Mod... 354s FAILED spyder_kernels/customize/tests/test_umr.py::test_umr_run - ModuleNotFo... 354s FAILED spyder_kernels/customize/tests/test_umr.py::test_umr_previous_modules 354s FAILED spyder_kernels/customize/tests/test_umr.py::test_umr_namelist - Module... 354s FAILED spyder_kernels/customize/tests/test_umr.py::test_umr_reload_modules - ... 354s ===== 5 failed, 65 passed, 5 skipped, 1 deselected, 84 warnings in 22.14s ======
--- End Message ---
--- Begin Message ---
Source: spyder-kernels
Source-Version: 3.0.1-1
Done: Julian Gilbey <j...@debian.org>

We believe that the bug you reported is fixed in the latest version of
spyder-kernels, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1056...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julian Gilbey <j...@debian.org> (supplier of updated spyder-kernels package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 24 Nov 2024 16:43:51 +0000
Source: spyder-kernels
Architecture: source
Version: 3.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Julian Gilbey <j...@debian.org>
Closes: 1056531 1082315
Changes:
 spyder-kernels (3.0.1-1) unstable; urgency=medium
 .
   * New upstream version (closes: #1082315)
   * Re-enable xarray tests
   * Cython is no longer used in tests (closes: #1056531)
Checksums-Sha1:
 f445b6e008f476168a93cb99b4cfc827544d94bc 2991 spyder-kernels_3.0.1-1.dsc
 66b76b77c628babd6f0e1ccdd5741505a53afbe7 238107 
spyder-kernels_3.0.1.orig.tar.gz
 52bed33ddeb12059473495db9c1dfea6abf18921 4116 
spyder-kernels_3.0.1-1.debian.tar.xz
 5c2c50abc1cdad8be8452ec56dbecc7253575d2d 12476 
spyder-kernels_3.0.1-1_amd64.buildinfo
Checksums-Sha256:
 2d3230357bedcdbbd1821ae6c5a62b46f704617e39767d6f230d5d09c40ca06f 2991 
spyder-kernels_3.0.1-1.dsc
 1c2ee8d1ba33aabaf62104f32f634bf094582449a73917043f5a86cbab1c31d3 238107 
spyder-kernels_3.0.1.orig.tar.gz
 491ed37e81aee3f383c81b437ce7fc2d27c9c7df64f881a2301cacb088b30288 4116 
spyder-kernels_3.0.1-1.debian.tar.xz
 faa8f5e4362e7c09a3c5172e94169b4d76fbc3506d1e301c80af10ef08b7af13 12476 
spyder-kernels_3.0.1-1_amd64.buildinfo
Files:
 ad9fb115f58ec83c842851fb0276ca98 2991 python optional 
spyder-kernels_3.0.1-1.dsc
 b524e2727ec3325a7695bbb5e426917d 238107 python optional 
spyder-kernels_3.0.1.orig.tar.gz
 0a6db6ccf8dde4c7aa410ec000c3fb0a 4116 python optional 
spyder-kernels_3.0.1-1.debian.tar.xz
 30efff30813f6eef08643962aa510e24 12476 python optional 
spyder-kernels_3.0.1-1_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJDBAEBCAAtFiEEfhrD+iemSShMMj72aVxCkxbAe/4FAmdDWeQPHGpkZ0BkZWJp
YW4ub3JnAAoJEGlcQpMWwHv+Jl0P/3kqRAfyf5PRbguJVNh+D0u/qEQ8vcm/NvwZ
p4BzgV+VE4LkSbQajIjhjRwr0i/Z/g/pO3cVCEoYeyI5SHJqqMAABArp0iYbQ0ho
8Hm+SMuI+H5NoTmaF2+DViOi+X3JBOEO3IvwIavHM36prp+1HAhfQZHe4DQbzv7E
/B5PJsUVCxNn1Oz2NFH6B5eD/6GJKDucDWmGYjjzr1/59A046D5NrJ71jTbVvKKP
Dx2Vxw33hVyZVCrm+aP6l1R7/Xol8CzoBS4yYUGTLC8ETV3p77u8UEoaG2HDWIbv
rcoBbymxIu3dyARepZVI2a/ZIPMDHJuuY6Uy3/o6S3kbkLsp7fWlq0ewx+dpMQ9Q
1mK9u/OBbeTJ31gnEOniUNBBXK0KHWHHpz7PeZDTV9os/E7n4ePhct2yeXqS3bvS
8HhJVVpLaKa3nM48MnnDvrlKXk7pyzoN9OySaWfBgs7F3U8jZESstPrsyFIbv6fs
3gAgXkjo3KZGTMurHbbmYUJVcF7L9rGPdmLpnXJ3/uGFCIQ2XoKjGD/zb0Ee9ceP
Kxldn5gDmemRYs0e4GSJqfHuJ07cqzwIYG7eeqRUZ0KvkFuC1ccS9zlUNmhpq7CW
Zi6+RhT6I8XGhra90M/ufv/pGXFu5fRXgQosa6HETL+lyJk9+jY22zRYssRD78lO
Q9IE3pzD
=StR+
-----END PGP SIGNATURE-----

Attachment: pgpGIUYztUVDm.pgp
Description: PGP signature


--- End Message ---

Reply via email to