summaryrefslogtreecommitdiff
path: root/numpy/_pyinstaller
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Move unused import into hook for pyinstallerSebastian Berg2023-01-201-3/+3
| | | | | | | | | pyinstaller should pack it to allow running the tests, but doesn't pack the tests themselves and thus doesn't find the `import` statements that use `numpy.core._multiarray_tests`. This makes sure that pyinstaller will ship `numpy.core._multiarray_tests` in any case.
* MAINT: Remove all nose testing support.Charles Harris2023-01-191-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | NumPy switched to using pytest in 2018 and nose has been unmaintained for many years. We have kept NumPy's nose support to avoid breaking downstream projects who might have been using it and not yet switched to pytest or some other testing framework. With the arrival of Python 3.12, unpatched nose will raise an error. It it time to move on. Decorators removed - raises - slow - setastest - skipif - knownfailif - deprecated - parametrize - _needs_refcount These are not to be confused with pytest versions with similar names, e.g., pytest.mark.slow, pytest.mark.skipif, pytest.mark.parametrize. Functions removed - Tester - import_nose - run_module_suite
* remove 'six' dependency from pyinstallermattip2022-11-241-2/+0
|
* MAINT: Fix typos found by codespellDimitri Papadopoulos2022-10-071-1/+1
|
* ENH: add hook and test for PyInstaller.bwoodsend2022-01-204-0/+107
Adding this special hook file tells PyInstaller what files a self contained NumPy application needs to run. A test is included to verify that the hook still finds all necessary files. Closes #17184.