py3-numpy-1.14.5 (diff) tested against the math/py-pandas test-suite: 2 failed, 24979 passed, 1215 skipped, 79 xfailed, 26 xpassed, 26 warnings in 7332.25 seconds
The tests use numpy extensible, so I its a good indication saying that this diff is OK. The 2 failures are also given with the current version of py-numpy and is not related to it. Cheers. Elias. 2018-06-27 0:02 GMT-03:00 Daniel Dickman <[email protected]>: > Here's an update of numpy to 1.14.5. Compile tested with the ports below. > > Ok? > > biology/py-biopython > devel/boost > devel/ipython > games/fretsonfire > games/singularity > geo/gdal > geo/pdal > geo/py-fiona > geo/py-laspy > geo/py-proj > geo/py-shapely > graphics/opencv > graphics/piglit > graphics/py-matplotlib > graphics/py-sane > math/lpsolve/python > math/py-bottleneck > math/py-gnuplot > math/py-numexpr > math/py-patsy > math/py-scipy > math/veusz > net/websockify > print/printrun > textproc/py-numpydoc > www/py-bokeh > x11/py-gtk2 > > Index: Makefile > =================================================================== > RCS file: /cvs/ports/math/py-numpy/Makefile,v > retrieving revision 1.49 > diff -u -p -u -r1.49 Makefile > --- Makefile 15 Jun 2018 02:01:13 -0000 1.49 > +++ Makefile 27 Jun 2018 02:28:50 -0000 > @@ -4,9 +4,10 @@ BROKEN-alpha = numpy/linalg/umath_linalg > > COMMENT= fast array and numeric programming library for Python > > -MODPY_EGG_VERSION= 1.9.3 > +MODPY_EGG_VERSION= 1.14.5 > DISTNAME= numpy-${MODPY_EGG_VERSION} > PKGNAME= py-${DISTNAME} > +EXTRACT_SUFX= .zip > > CATEGORIES= math devel > > @@ -27,10 +28,10 @@ FLAVOR?= > > MODPY_PI = Yes > MODPY_SETUPTOOLS= Yes > -MODPY_SETUP= setupegg.py > -MODPY_DISTUTILS_BUILD = build --build-base=${WRKBUILD} --fcompiler=gnu95 > +MODPY_DISTUTILS_BUILDARGS = --fcompiler=gnu95 > > -TEST_DEPENDS= devel/py-nose${MODPY_FLAVOR} > +TEST_DEPENDS= devel/py-nose${MODPY_FLAVOR} \ > + devel/py-tz${MODPY_FLAVOR} > > MODFORTRAN_COMPILER = gfortran > > @@ -42,7 +43,7 @@ pre-build: > cp -f ${WRKSRC}/numpy/distutils/site.cfg ${WRKSRC}/site.cfg > > do-test: fake > - ${MAKE_ENV} PYTHONPATH=${WRKINST}${MODPY_SITEPKG} ${MODPY_BIN} -c \ > + cd ${WRKDIR} && ${MAKE_ENV} PYTHONPATH=${WRKINST}${MODPY_SITEPKG} > ${MODPY_BIN} -c \ > 'import numpy ; numpy.test()' > > .include <bsd.port.mk> > Index: distinfo > =================================================================== > RCS file: /cvs/ports/math/py-numpy/distinfo,v > retrieving revision 1.11 > diff -u -p -u -r1.11 distinfo > --- distinfo 15 Jun 2018 02:01:13 -0000 1.11 > +++ distinfo 27 Jun 2018 02:28:50 -0000 > @@ -1,2 +1,2 @@ > -SHA256 (numpy-1.9.3.tar.gz) = w7dNO52kzrEfZqvSHhF9qM9YS2Og770BqbfpG2k/u9Y= > -SIZE (numpy-1.9.3.tar.gz) = 3984430 > +SHA256 (numpy-1.14.5.zip) = pKQzs6Jk28mqnHwkHofANYpQPqY5T4c33xaDx8mhAqw= > +SIZE (numpy-1.14.5.zip) = 4904624 > Index: patches/patch-numpy_core_include_numpy_npy_common_h > =================================================================== > RCS file: > /cvs/ports/math/py-numpy/patches/patch-numpy_core_include_numpy_npy_common_h,v > retrieving revision 1.5 > diff -u -p -u -r1.5 patch-numpy_core_include_numpy_npy_common_h > --- patches/patch-numpy_core_include_numpy_npy_common_h 18 Mar 2016 13:26:10 > -0000 1.5 > +++ patches/patch-numpy_core_include_numpy_npy_common_h 27 Jun 2018 02:28:50 > -0000 > @@ -12,17 +12,18 @@ support is present. since we don't have > it's own. however, on alpha, powerpc, it declared functions with > types that conflict with C99 (double for *l), therefore failed. > > ---- numpy/core/include/numpy/npy_common.h.orig Sun Nov 16 17:31:16 2014 > -+++ numpy/core/include/numpy/npy_common.h Sun Mar 6 15:22:08 2016 > -@@ -7,6 +7,7 @@ > - #include <npy_config.h> > +Index: numpy/core/include/numpy/npy_common.h > +--- numpy/core/include/numpy/npy_common.h.orig > ++++ numpy/core/include/numpy/npy_common.h > +@@ -20,6 +20,7 @@ > + #endif > #endif > > +#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > > 4))) > /* > * gcc does not unroll even with -O3 > * use with care, unrolling on modern cpus rarely speeds things up > -@@ -17,13 +18,20 @@ > +@@ -30,13 +31,20 @@ > #else > #define NPY_GCC_UNROLL_LOOPS > #endif > @@ -41,9 +42,9 @@ types that conflict with C99 (double for > +#define NPY_GCC_OPT_3 > +#endif > > - /* > - * mark an argument (starting from 1) that must not be NULL and is not > checked > -@@ -288,14 +296,8 @@ typedef unsigned char npy_bool; > + /* compile target attributes */ > + #if defined HAVE_ATTRIBUTE_TARGET_AVX && defined HAVE_LINK_AVX > +@@ -336,14 +344,8 @@ typedef unsigned char npy_bool; > #define NPY_FALSE 0 > #define NPY_TRUE 1 > > Index: patches/patch-numpy_core_include_numpy_npy_endian_h > =================================================================== > RCS file: patches/patch-numpy_core_include_numpy_npy_endian_h > diff -N patches/patch-numpy_core_include_numpy_npy_endian_h > --- patches/patch-numpy_core_include_numpy_npy_endian_h 13 Jul 2014 18:07:35 > -0000 1.3 > +++ /dev/null 1 Jan 1970 00:00:00 -0000 > @@ -1,22 +0,0 @@ > -$OpenBSD: patch-numpy_core_include_numpy_npy_endian_h,v 1.3 2014/07/13 > 18:07:35 espie Exp $ > ---- numpy/core/include/numpy/npy_endian.h.orig Sun Jul 13 19:52:50 2014 > -+++ numpy/core/include/numpy/npy_endian.h Sun Jul 13 19:54:29 2014 > -@@ -10,9 +10,15 @@ > - /* Use endian.h if available */ > - #include <endian.h> > - > -- #define NPY_BYTE_ORDER __BYTE_ORDER > -- #define NPY_LITTLE_ENDIAN __LITTLE_ENDIAN > -- #define NPY_BIG_ENDIAN __BIG_ENDIAN > -+# if defined(BYTE_ORDER) > -+# define NPY_BYTE_ORDER BYTE_ORDER > -+# define NPY_LITTLE_ENDIAN LITTLE_ENDIAN > -+# define NPY_BIG_ENDIAN BIG_ENDIAN > -+# else > -+# define NPY_BYTE_ORDER __BYTE_ORDER > -+# define NPY_LITTLE_ENDIAN __LITTLE_ENDIAN > -+# define NPY_BIG_ENDIAN __BIG_ENDIAN > -+# endif > - #else > - /* Set endianness info using target CPU */ > - #include "npy_cpu.h" > Index: patches/patch-numpy_distutils_command_build_src_py > =================================================================== > RCS file: > /cvs/ports/math/py-numpy/patches/patch-numpy_distutils_command_build_src_py,v > retrieving revision 1.2 > diff -u -p -u -r1.2 patch-numpy_distutils_command_build_src_py > --- patches/patch-numpy_distutils_command_build_src_py 17 Sep 2014 00:46:13 > -0000 1.2 > +++ patches/patch-numpy_distutils_command_build_src_py 27 Jun 2018 02:28:50 > -0000 > @@ -3,9 +3,10 @@ $OpenBSD: patch-numpy_distutils_command_ > fix build of other packages (e.g. py-scipy) in some cases (e.g. when > WRKOBJDIR has a trailing slash) > > ---- numpy/distutils/command/build_src.py.orig Wed Oct 30 14:31:40 2013 > -+++ numpy/distutils/command/build_src.py Tue Nov 5 21:28:46 2013 > -@@ -381,6 +381,7 @@ class build_src(build_ext.build_ext): > +Index: numpy/distutils/command/build_src.py > +--- numpy/distutils/command/build_src.py.orig > ++++ numpy/distutils/command/build_src.py > +@@ -372,6 +372,7 @@ class build_src(build_ext.build_ext): > # incl_dirs.append(self.build_src) > build_dir = os.path.join(*([self.build_src]\ > +name.split('.')[:-1])) > Index: patches/patch-numpy_distutils_fcompiler_gnu_py > =================================================================== > RCS file: > /cvs/ports/math/py-numpy/patches/patch-numpy_distutils_fcompiler_gnu_py,v > retrieving revision 1.1 > diff -u -p -u -r1.1 patch-numpy_distutils_fcompiler_gnu_py > --- patches/patch-numpy_distutils_fcompiler_gnu_py 15 Jan 2015 02:55:22 > -0000 1.1 > +++ patches/patch-numpy_distutils_fcompiler_gnu_py 27 Jun 2018 02:28:50 > -0000 > @@ -5,9 +5,10 @@ Causes segmentation fault on powerpc whe > See discussion at: > https://github.com/numpy/numpy/issues/5451 > > ---- numpy/distutils/fcompiler/gnu.py.orig Wed Jan 14 12:54:27 2015 > -+++ numpy/distutils/fcompiler/gnu.py Wed Jan 14 12:54:33 2015 > -@@ -201,7 +201,6 @@ class GnuFCompiler(FCompiler): > +Index: numpy/distutils/fcompiler/gnu.py > +--- numpy/distutils/fcompiler/gnu.py.orig > ++++ numpy/distutils/fcompiler/gnu.py > +@@ -237,7 +237,6 @@ class GnuFCompiler(FCompiler): > opt = ['-O2'] > else: > opt = ['-O3'] > Index: pkg/PLIST > =================================================================== > RCS file: /cvs/ports/math/py-numpy/pkg/PLIST,v > retrieving revision 1.11 > diff -u -p -u -r1.11 PLIST > --- pkg/PLIST 18 Mar 2016 13:26:10 -0000 1.11 > +++ pkg/PLIST 27 Jun 2018 02:28:51 -0000 > @@ -6,18 +6,24 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt > > lib/python${MODPY_VERSION}/site-packages/numpy-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt > > lib/python${MODPY_VERSION}/site-packages/numpy-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt > +lib/python${MODPY_VERSION}/site-packages/numpy/LICENSE.txt > lib/python${MODPY_VERSION}/site-packages/numpy/__config__.py > lib/python${MODPY_VERSION}/site-packages/numpy/__init__.py > > ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}/ > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}__config__.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_distributor_init.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_globals.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_import_tools.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}add_newdocs.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}conftest.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}ctypeslib.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}dual.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}matlib.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/_distributor_init.py > +lib/python${MODPY_VERSION}/site-packages/numpy/_globals.py > lib/python${MODPY_VERSION}/site-packages/numpy/_import_tools.py > lib/python${MODPY_VERSION}/site-packages/numpy/add_newdocs.py > lib/python${MODPY_VERSION}/site-packages/numpy/compat/ > @@ -30,6 +36,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/compat/_inspect.py > lib/python${MODPY_VERSION}/site-packages/numpy/compat/py3k.py > lib/python${MODPY_VERSION}/site-packages/numpy/compat/setup.py > +lib/python${MODPY_VERSION}/site-packages/numpy/conftest.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/ > lib/python${MODPY_VERSION}/site-packages/numpy/core/__init__.py > > ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}/ > @@ -39,6 +46,7 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}arrayprint.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}cversions.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}defchararray.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}einsumfunc.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}fromnumeric.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}function_base.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}generate_numpy_api.${MODPY_PYC_MAGIC_TAG}pyc > @@ -58,6 +66,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/core/arrayprint.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/cversions.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/defchararray.py > +lib/python${MODPY_VERSION}/site-packages/numpy/core/einsumfunc.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/fromnumeric.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/function_base.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/generate_numpy_api.py > @@ -104,42 +113,44 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/core/numerictypes.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/operand_flag_tests.so > lib/python${MODPY_VERSION}/site-packages/numpy/core/records.py > -lib/python${MODPY_VERSION}/site-packages/numpy/core/scalarmath.so > lib/python${MODPY_VERSION}/site-packages/numpy/core/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/setup_common.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/shape_base.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/struct_ufunc_test.so > lib/python${MODPY_VERSION}/site-packages/numpy/core/test_rational.so > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/data/ > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/data/astype_copy.pkl > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/data/recarray_from_file.fits > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_abc.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_api.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_arrayprint.py > -lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_blasdot.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_datetime.py > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_defchararray.py > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_deprecations.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_dtype.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_einsum.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_errstate.py > +lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_extint128.py > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_function_base.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_getlimits.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_half.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_indexerrors.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_indexing.py > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_item_selection.py > +lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_longdouble.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_machar.py > +lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_mem_overlap.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_memmap.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_multiarray.py > -lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_multiarray_assignment.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_nditer.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_numeric.py > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_numerictypes.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_print.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_records.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_regression.py > +lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_scalar_ctors.py > > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_scalarinherit.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_scalarmath.py > lib/python${MODPY_VERSION}/site-packages/numpy/core/tests/test_scalarprint.py > @@ -174,6 +185,8 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}log.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}mingw32ccompiler.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}misc_util.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}msvc9compiler.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}msvccompiler.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}npy_pkg_config.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}numpy_distribution.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/${MODPY_PYCACHE}pathccompiler.${MODPY_PYC_MAGIC_TAG}pyc > @@ -271,6 +284,8 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/mingw/gfortran_vs2003_hack.c > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/mingw32ccompiler.py > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/misc_util.py > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/msvc9compiler.py > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/msvccompiler.py > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/npy_pkg_config.py > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/numpy_distribution.py > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/pathccompiler.py > @@ -278,52 +293,14 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/site.cfg > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/system_info.py > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/__init__.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/setup.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/src/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/src/fib1.f > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/src/fib2.pyf > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/tests/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_ext/tests/test_fib2.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/__init__.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/include/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/include/body.f90 > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/setup.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/src/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/tests/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/gen_ext/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/gen_ext/__init__.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/gen_ext/setup.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/gen_ext/tests/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/gen_ext/tests/test_fib3.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/pyrex_ext/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/pyrex_ext/__init__.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/pyrex_ext/primes.pyx > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/pyrex_ext/setup.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/pyrex_ext/tests/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/pyrex_ext/tests/test_primes.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/setup.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/__init__.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/setup.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/src/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/src/example.c > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/src/example.i > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/src/zoo.cc > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/src/zoo.h > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/src/zoo.i > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/tests/ > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/tests/test_example.py > -lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/swig_ext/tests/test_example2.py > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/__init__.py > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_exec_command.py > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_fcompiler_gnu.py > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_fcompiler_intel.py > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_fcompiler_nagfor.py > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_misc_util.py > > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_npy_pkg_config.py > +lib/python${MODPY_VERSION}/site-packages/numpy/distutils/tests/test_system_info.py > lib/python${MODPY_VERSION}/site-packages/numpy/distutils/unixccompiler.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/ > lib/python${MODPY_VERSION}/site-packages/numpy/doc/__init__.py > @@ -335,14 +312,9 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}creation.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}glossary.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}howtofind.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}indexing.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}internals.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}jargon.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}methods_vs_functions.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}misc.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}performance.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}structured_arrays.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}subclassing.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/doc/${MODPY_PYCACHE}ufuncs.${MODPY_PYC_MAGIC_TAG}pyc > @@ -352,22 +324,19 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/doc/constants.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/creation.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/glossary.py > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/howtofind.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/indexing.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/internals.py > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/io.py > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/jargon.py > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/methods_vs_functions.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/misc.py > -lib/python${MODPY_VERSION}/site-packages/numpy/doc/performance.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/structured_arrays.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/subclassing.py > lib/python${MODPY_VERSION}/site-packages/numpy/doc/ufuncs.py > lib/python${MODPY_VERSION}/site-packages/numpy/dual.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/ > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/__init__.py > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/__main__.py > > ${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/numpy/f2py/${MODPY_PYCACHE}/ > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/${MODPY_PYCACHE}__version__.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/${MODPY_PYCACHE}auxfuncs.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/${MODPY_PYCACHE}capi_maps.${MODPY_PYC_MAGIC_TAG}pyc > @@ -403,6 +372,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/src/fortranobject.c > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/src/fortranobject.h > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/ > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/array_from_pyobj/ > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c > @@ -412,21 +382,34 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/assumed_shape/foo_use.f90 > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/assumed_shape/precision.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/common/ > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/common/block.f > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/kind/ > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/kind/foo.f90 > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/mixed/ > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/mixed/foo.f > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/mixed/foo_fixed.f90 > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/mixed/foo_free.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/parameter/ > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/parameter/constant_both.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/parameter/constant_compound.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/parameter/constant_integer.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/parameter/constant_non_compound.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/parameter/constant_real.f90 > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/regression/ > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/regression/inout.f90 > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/size/ > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/size/foo.f90 > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/string/ > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/src/string/char.f90 > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_array_from_pyobj.py > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_assumed_shape.py > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_block_docstring.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_callback.py > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_common.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_kind.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_mixed.py > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_parameter.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_regression.py > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_return_character.py > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_return_complex.py > @@ -434,6 +417,7 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_return_logical.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_return_real.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_size.py > +lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/test_string.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/tests/util.py > lib/python${MODPY_VERSION}/site-packages/numpy/f2py/use_rules.py > lib/python${MODPY_VERSION}/site-packages/numpy/fft/ > @@ -450,6 +434,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/fft/info.py > lib/python${MODPY_VERSION}/site-packages/numpy/fft/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/fft/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/fft/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/fft/tests/test_fftpack.py > lib/python${MODPY_VERSION}/site-packages/numpy/fft/tests/test_helper.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/ > @@ -467,6 +452,7 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}function_base.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}index_tricks.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}info.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}mixins.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}nanfunctions.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}npyio.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}polynomial.${MODPY_PYC_MAGIC_TAG}pyc > @@ -480,7 +466,6 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}ufunclike.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}user_array.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/lib/_compiled_base.so > lib/python${MODPY_VERSION}/site-packages/numpy/lib/_datasource.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/_iotools.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/_version.py > @@ -492,6 +477,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/lib/function_base.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/index_tricks.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/info.py > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/mixins.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/nanfunctions.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/npyio.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/polynomial.py > @@ -501,7 +487,12 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/lib/shape_base.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/stride_tricks.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/ > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/py2-objarr.npy > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/py2-objarr.npz > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/py3-objarr.npy > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/py3-objarr.npz > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/python3.npy > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/data/win64python2.npy > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test__datasource.py > @@ -515,7 +506,9 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_function_base.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_index_tricks.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_io.py > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_mixins.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_nanfunctions.py > +lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_packbits.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_polynomial.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_recfunctions.py > lib/python${MODPY_VERSION}/site-packages/numpy/lib/tests/test_regression.py > @@ -543,6 +536,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/linalg/linalg.py > lib/python${MODPY_VERSION}/site-packages/numpy/linalg/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/linalg/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/linalg/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/linalg/tests/test_build.py > > lib/python${MODPY_VERSION}/site-packages/numpy/linalg/tests/test_deprecations.py > lib/python${MODPY_VERSION}/site-packages/numpy/linalg/tests/test_linalg.py > @@ -565,7 +559,9 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/ma/mrecords.py > lib/python${MODPY_VERSION}/site-packages/numpy/ma/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/test_core.py > +lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/test_deprecations.py > lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/test_extras.py > lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/test_mrecords.py > lib/python${MODPY_VERSION}/site-packages/numpy/ma/tests/test_old_ma.py > @@ -584,6 +580,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/defmatrix.py > lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/tests/__init__.py > > lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/tests/test_defmatrix.py > > lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/tests/test_multiarray.py > > lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/tests/test_numeric.py > @@ -599,7 +596,6 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}laguerre.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}legendre.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polynomial.${MODPY_PYC_MAGIC_TAG}pyc > -lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polytemplate.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polyutils.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/_polybase.py > @@ -609,10 +605,10 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/laguerre.py > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/legendre.py > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polynomial.py > -lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polytemplate.py > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polyutils.py > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/tests/__init__.py > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/tests/test_chebyshev.py > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/tests/test_classes.py > > lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/tests/test_hermite.py > @@ -633,6 +629,7 @@ lib/python${MODPY_VERSION}/site-packages > lib/python${MODPY_VERSION}/site-packages/numpy/random/randomkit.h > lib/python${MODPY_VERSION}/site-packages/numpy/random/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/random/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/random/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/random/tests/test_random.py > > lib/python${MODPY_VERSION}/site-packages/numpy/random/tests/test_regression.py > lib/python${MODPY_VERSION}/site-packages/numpy/setup.py > @@ -647,16 +644,36 @@ lib/python${MODPY_VERSION}/site-packages > > lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc > > lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc > lib/python${MODPY_VERSION}/site-packages/numpy/testing/decorators.py > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/ > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/__init__.py > +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}/ > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}decorators.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}noseclasses.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}nosetester.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}parameterized.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/decorators.py > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/noseclasses.py > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/nosetester.py > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/parameterized.py > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/nose_tools/utils.py > lib/python${MODPY_VERSION}/site-packages/numpy/testing/noseclasses.py > lib/python${MODPY_VERSION}/site-packages/numpy/testing/nosetester.py > > lib/python${MODPY_VERSION}/site-packages/numpy/testing/print_coercion_tables.py > lib/python${MODPY_VERSION}/site-packages/numpy/testing/setup.py > lib/python${MODPY_VERSION}/site-packages/numpy/testing/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/testing/tests/__init__.py > > lib/python${MODPY_VERSION}/site-packages/numpy/testing/tests/test_decorators.py > > lib/python${MODPY_VERSION}/site-packages/numpy/testing/tests/test_doctesting.py > lib/python${MODPY_VERSION}/site-packages/numpy/testing/tests/test_utils.py > lib/python${MODPY_VERSION}/site-packages/numpy/testing/utils.py > lib/python${MODPY_VERSION}/site-packages/numpy/tests/ > +lib/python${MODPY_VERSION}/site-packages/numpy/tests/__init__.py > lib/python${MODPY_VERSION}/site-packages/numpy/tests/test_ctypeslib.py > lib/python${MODPY_VERSION}/site-packages/numpy/tests/test_matlib.py > +lib/python${MODPY_VERSION}/site-packages/numpy/tests/test_numpy_version.py > +lib/python${MODPY_VERSION}/site-packages/numpy/tests/test_reloading.py > +lib/python${MODPY_VERSION}/site-packages/numpy/tests/test_scripts.py > +lib/python${MODPY_VERSION}/site-packages/numpy/tests/test_warnings.py > lib/python${MODPY_VERSION}/site-packages/numpy/version.py >
