==> Building on minun ==> Checking for remote environment... ==> Syncing package to remote host... sending incremental file list ./ .SRCINFO 702 100% 0.00kB/s 0:00:00 702 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=3/5) .nvchecker.toml 58 100% 56.64kB/s 0:00:00 58 100% 56.64kB/s 0:00:00 (xfr#2, to-chk=2/5) PKGBUILD 1,037 100% 1012.70kB/s 0:00:00 1,037 100% 1012.70kB/s 0:00:00 (xfr#3, to-chk=1/5) python-cloudpickle-3.1.0-3.log 451 100% 440.43kB/s 0:00:00 451 100% 440.43kB/s 0:00:00 (xfr#4, to-chk=0/5) sent 1,526 bytes received 113 bytes 655.60 bytes/sec total size is 1,989 speedup is 1.21 ==> Running extra-riscv64-build -- -d /home/felix/packages/riscv64-pkg-cache:/var/cache/pacman/pkg -l root13 on remote host... ]2;🔵 Container arch-nspawn-2044830 on minun.felixc.at[?25l:: Synchronizing package databases... core downloading... extra downloading... :: Starting full system upgrade... there is nothing to do [?25h==> Building in chroot for [extra] (riscv64)... ==> Synchronizing chroot copy [/var/lib/archbuild/extra-riscv64/root] -> [root13]...done ==> Making package: python-cloudpickle 3.1.0-3 (Thu Dec 26 21:13:37 2024) ==> Retrieving sources...  -> Downloading python-cloudpickle-3.1.0.tar.gz... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 62638 0 62638 0 0 100k 0 --:--:-- --:--:-- --:--:-- 100k ==> Validating source files with sha256sums... python-cloudpickle-3.1.0.tar.gz ... Passed ]2;🔵 Container arch-nspawn-2045788 on minun.felixc.at==> Making package: python-cloudpickle 3.1.0-3 (Thu Dec 26 21:13:49 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Installing missing dependencies... [?25lresolving dependencies... looking for conflicting packages... Package (15) New Version Net Change Download Size extra/blas 3.12.0-5 0.41 MiB extra/cblas 3.12.0-5 0.28 MiB extra/lapack 3.12.0-5 4.72 MiB extra/python-iniconfig 2.0.0-6 0.04 MiB extra/python-packaging 24.2-3 0.66 MiB extra/python-pluggy 1.5.0-3 0.20 MiB extra/python-pyproject-hooks 1.2.0-3 0.10 MiB extra/python-build 1.2.2-3 0.20 MiB extra/python-flit-core 3.10.1-3 0.24 MiB extra/python-installer 0.7.0-10 0.17 MiB extra/python-numpy 2.2.1-2 38.72 MiB extra/python-psutil 6.1.1-1 1.18 MiB extra/python-pytest 1:8.3.4-1 3.92 MiB extra/python-tornado 6.4.2-1 5.62 MiB 0.84 MiB extra/python-wheel 0.45.0-3 0.28 MiB Total Download Size: 0.84 MiB Total Installed Size: 56.74 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... python-tornado-6.4.2-1-riscv64 downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... :: Processing package changes... installing python-packaging... installing python-pyproject-hooks... installing python-build... Optional dependencies for python-build python-pip: to use as the Python package installer (default) python-uv: to use as the Python package installer python-virtualenv: to use virtualenv for build isolation installing python-installer... installing python-flit-core... installing python-wheel... Optional dependencies for python-wheel python-keyring: for wheel.signatures python-xdg: for wheel.signatures python-setuptools: for legacy bdist_wheel subcommand installing python-iniconfig... installing python-pluggy... installing python-pytest... installing python-psutil... installing python-tornado... Optional dependencies for python-tornado python-pycurl: for tornado.curl_httpclient python-pycares: an alternative non-blocking DNS resolver python-twisted: for tornado.platform.twisted installing blas... installing cblas... installing lapack... installing python-numpy... Optional dependencies for python-numpy blas-openblas: faster linear algebra :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... [?25h==> Retrieving sources...  -> Found python-cloudpickle-3.1.0.tar.gz ==> WARNING: Skipping all source file integrity checks. ==> Extracting sources...  -> Extracting python-cloudpickle-3.1.0.tar.gz with bsdtar ==> Starting build()... * Getting build dependencies for wheel... * Building wheel... Successfully built cloudpickle-3.1.0-py3-none-any.whl ==> Starting check()... ============================= test session starts ============================== platform linux -- Python 3.13.1, pytest-8.3.4, pluggy-1.5.0 rootdir: /build/python-cloudpickle/src/cloudpickle-3.1.0 configfile: tox.ini collected 272 items tests/cloudpickle_file_test.py ....... tests/cloudpickle_test.py .......s........s......................x.................F..............................s...........s....s.s.....s...................s........s......................x.................F..............................s.........s.s....s.s.....s..............s.s. tests/test_backward_compat.py sssssss =================================== FAILURES =================================== __ CloudPickleTest.test_importing_multiprocessing_does_not_impact_whichmodule __ self = def test_importing_multiprocessing_does_not_impact_whichmodule(self): # non-regression test for #528 pytest.importorskip("numpy") script = textwrap.dedent(""" import multiprocessing import cloudpickle from numpy import exp print(cloudpickle.cloudpickle._whichmodule(exp, exp.__name__)) """) script_path = Path(self.tmpdir) / "whichmodule_and_multiprocessing.py" with open(script_path, mode="w") as f: f.write(script) proc = subprocess.Popen( [sys.executable, str(script_path)], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, ) out, _ = proc.communicate() self.assertEqual(proc.wait(), 0) > assert out.strip() in ( b"numpy.core._multiarray_umath", # numpy 1 b"numpy._core._multiarray_umath", # numpy 2 ) E AssertionError: assert b'numpy' in (b'numpy.core._multiarray_umath', b'numpy._core._multiarray_umath') E + where b'numpy' = () E + where = b'numpy\n'.strip tests/cloudpickle_test.py:1528: AssertionError _ Protocol2CloudPickleTest.test_importing_multiprocessing_does_not_impact_whichmodule _ self = def test_importing_multiprocessing_does_not_impact_whichmodule(self): # non-regression test for #528 pytest.importorskip("numpy") script = textwrap.dedent(""" import multiprocessing import cloudpickle from numpy import exp print(cloudpickle.cloudpickle._whichmodule(exp, exp.__name__)) """) script_path = Path(self.tmpdir) / "whichmodule_and_multiprocessing.py" with open(script_path, mode="w") as f: f.write(script) proc = subprocess.Popen( [sys.executable, str(script_path)], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, ) out, _ = proc.communicate() self.assertEqual(proc.wait(), 0) > assert out.strip() in ( b"numpy.core._multiarray_umath", # numpy 1 b"numpy._core._multiarray_umath", # numpy 2 ) E AssertionError: assert b'numpy' in (b'numpy.core._multiarray_umath', b'numpy._core._multiarray_umath') E + where b'numpy' = () E + where = b'numpy\n'.strip tests/cloudpickle_test.py:1528: AssertionError =============================== warnings summary =============================== tests/cloudpickle_test.py::CloudPickleTest::test_itertools_count tests/cloudpickle_test.py::Protocol2CloudPickleTest::test_itertools_count /build/python-cloudpickle/src/cloudpickle-3.1.0/cloudpickle/cloudpickle.py:1295: DeprecationWarning: Pickle, copy, and deepcopy support will be removed from itertools in Python 3.14. return super().dump(obj) -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html =========================== short test summary info ============================ FAILED tests/cloudpickle_test.py::CloudPickleTest::test_importing_multiprocessing_does_not_impact_whichmodule FAILED tests/cloudpickle_test.py::Protocol2CloudPickleTest::test_importing_multiprocessing_does_not_impact_whichmodule = 2 failed, 244 passed, 24 skipped, 2 xfailed, 2 warnings in 94.50s (0:01:34) == ==> ERROR: A failure occurred in check().  Aborting... ==> ERROR: Build failed, check /var/lib/archbuild/extra-riscv64/root13/build [?25h[?25hreceiving incremental file list python-cloudpickle-3.1.0-3-riscv64-build.log python-cloudpickle-3.1.0-3-riscv64-check.log sent 62 bytes received 1,447 bytes 603.60 bytes/sec total size is 4,732 speedup is 3.14