Package Details: python-numpoly 1.2.4-1

Git Clone URL: https://aur.archlinux.org/python-numpoly.git (read-only, click to copy)
Package Base: python-numpoly
Description: NumPy compatible polynomial representation
Upstream URL: https://github.com/jonathf/numpoly
Licenses: BSD
Submitter: xantares
Maintainer: None
Last Packager: lmartinez-mirror
Votes: 0
Popularity: 0.000000
First Submitted: 2020-02-25 18:29 (UTC)
Last Updated: 2022-07-15 20:36 (UTC)

Latest Comments

lmartinez-mirror commented on 2022-03-25 17:56 (UTC) (edited on 2022-03-25 19:45 (UTC) by lmartinez-mirror)

Can't seem to find a way to fix the tests. Not sure what upstream CI is doing differently to pass their tests.

EDIT: The new update that I pushed does NOT address the failed tests. I will have to bring this up to upstream.

xantares commented on 2021-10-14 05:19 (UTC)

=================================== FAILURES =================================== ____ test_savetxt[numpoly] _____ hello, it seems some tests fail:

func_interface = <module 'numpoly' from '/home/devel/.cache/aurman/python-numpoly/src/numpoly-1.2.3/numpoly/__init__.py'>

def test_savetxt(func_interface):
    outfile = TemporaryFile()
    func_interface.savetxt(outfile, POLY)
    outfile.seek(0)
  assert numpy.all(numpoly.loadtxt(outfile) == POLY)

test/test_save_load.py:75: