Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #20388 from ARCCA/arm_neon_fixes | Matti Picus | 2021-11-17 | 1 | -2/+2 |
|\ | | | | | Update ARM cpu_asimdfhm.c check | ||||
| * | Update cpu_asimdfhm.c | Thomas Green | 2021-11-16 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Updated `vfmlal_low_u32` and `vfmlslq_high_u32` to their `f16` new names. Described here: https://www.mail-archive.com/gcc-bugs@gcc.gnu.org/msg664008.html Many of the intrinsics had names updated. Supposedly previous specifications were not published so old names not required. | ||||
* | | Merge pull request #20093 from Mukulikaa/indexing-howto | Matti Picus | 2021-11-17 | 5 | -3/+361 |
|\ \ | | | | | | | DOC: Created an indexing how-to | ||||
| * | | DOC: Minor typos and improvement in explanations | Mukulika | 2021-11-11 | 2 | -38/+67 |
| | | | |||||
| * | | DOC: Added and modified examples | Mukulika | 2021-11-11 | 3 | -40/+89 |
| | | | | | | | | | | | | Also fixed minor typos and styling errors | ||||
| * | | DOC: Added Nicolas Rougier's exercises | Mukulika | 2021-11-11 | 1 | -10/+58 |
| | | | |||||
| * | | DOC: Created an indexing how-to | Mukulika | 2021-11-11 | 3 | -0/+232 |
| | | | |||||
* | | | Merge pull request #20147 from ↵ | Matti Picus | 2021-11-17 | 1 | -1/+2 |
|\ \ \ | | | | | | | | | | | | | | | | | arushi-08/updated-docstring-for-binary-file-object DOC: updated docstring for binary file object | ||||
| * | | | DOC: updated file object docstring | Arushi Sharma | 2021-10-26 | 1 | -1/+1 |
| | | | | |||||
| * | | | DOC: updated docstring for binary file object | Arushi Sharma | 2021-10-21 | 1 | -1/+2 |
| | | | | |||||
* | | | | Merge pull request #20244 from MuhammadMotawe/clarify-sqrt-behavior | Matti Picus | 2021-11-17 | 2 | -0/+10 |
|\ \ \ \ | | | | | | | | | | | DOC: Clarify behavior of ``np.lib.scimath.sqrt`` apropos -0.0 | ||||
| * | | | | MAINT: Address review comments | Muhammad Motawe | 2021-10-30 | 1 | -5/+0 |
| | | | | | | | | | | | | | | | Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> | ||||
| * | | | | DOC: Clarify behavior of np.lib.scimath.sqrt in the presence of negative 0 | Muhammad Motawe | 2021-10-30 | 2 | -0/+15 |
| | | | | | |||||
| * | | | | BUG: `VOID_nonzero` could sometimes mutate alignment flag | Sebastian Berg | 2021-10-30 | 2 | -2/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes that invocations of `VOID_nonzero` could flip the alignment flag on the original array even though the original array is not modified. | ||||
* | | | | | Merge pull request #18343 from rgommers/ci-skip-docs | Matti Picus | 2021-11-17 | 1 | -0/+21 |
|\ \ \ \ \ | | | | | | | | | | | | | DOC: document how to skip CI jobs | ||||
| * | | | | | remove appveyor | Matti Picus | 2021-10-20 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [skip github] [skip travis] | ||||
| * | | | | | DOC: document how to skip CI jobs | Ralf Gommers | 2021-10-20 | 1 | -0/+22 |
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a follow-up to gh-18333. Self-test: docs get built on CircleCI, so let's skip the other platforms: [skip github] [skip azurepipelines] [skip appveyor] [skip travis] | ||||
* | | | | | Merge pull request #20393 from WarrenWeckesser/doc-no-deps | Sebastian Berg | 2021-11-17 | 1 | -1/+1 |
|\ \ \ \ \ | | | | | | | | | | | | | CI: CircleCI: Install numpy after processing doc_requirements.txt | ||||
| * | | | | | CI: CircleCI: Install numpy after processing doc_requirements.txt | warren | 2021-11-17 | 1 | -1/+1 |
|/ / / / / | |||||
* | | | | | Merge pull request #20387 from charris/prepare-main-for-1.23.0-development | Charles Harris | 2021-11-16 | 42 | -295/+50 |
|\ \ \ \ \ | |_|_|_|/ |/| | | | | REL: Prepare main for NumPy 1.23.0 development | ||||
| * | | | | REL: Prepare main for NumPy 1.23.0 development | Charles Harris | 2021-11-16 | 42 | -295/+50 |
|/ / / / | |||||
* | | | | REL: Begin NumPy 1.23.0 developmentv1.23.0.dev0 | Charles Harris | 2021-11-16 | 0 | -0/+0 |
| | | | | |||||
* | | | | REL: Begin NumPy 1.22.0 development | Charles Harris | 2021-11-16 | 0 | -0/+0 |
| | | | | |||||
* | | | | REV: Add MaskedArray creation from non nd-array back in (#20386) | Greg Lucas | 2021-11-16 | 2 | -0/+48 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * REV: Add MaskedArray creation from non nd-array back in This code path was removed in beacb39. This adds back in the MaskedArray portion of that commit. A test with a Quantity-like (non inherited, but still acts like a MaskedArray) class for this case. * Update numpy/ma/core.py Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net> | ||||
* | | | | Merge pull request #20367 from HowJMay/simd-trunc | Matti Picus | 2021-11-16 | 7 | -8/+85 |
|\ \ \ \ | | | | | | | | | | | ENH, SIMD: add new universal intrinsics for trunc | ||||
| * | | | | ENH, SIMD: add new universal intrinsics for trunc | HowJMay | 2021-11-16 | 7 | -8/+85 |
| | | | | | |||||
* | | | | | Merge pull request #20182 from HaoZeke/buildf2pydoc | Ralf Gommers | 2021-11-16 | 15 | -13/+644 |
|\ \ \ \ \ | | | | | | | | | | | | | DOC, MAINT: Update build systems for f2py | ||||
| * | | | | | DOC: Address build system review I | Rohit Goswami | 2021-11-16 | 5 | -18/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Ralf Gommers <ralf.gommers@gmail.com> Co-authored-by: Christoph Buchner <bilderbuchi@phononoia.at> Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> | ||||
| * | | | | | DOC: Update meson and f2py for automated wrappers | Rohit Goswami | 2021-11-15 | 4 | -4/+75 |
| | | | | | | |||||
| * | | | | | DOC: Fix omission in build docs | Rohit Goswami | 2021-11-15 | 1 | -4/+14 |
| | | | | | | |||||
| * | | | | | DOC: Add signature file build information | Rohit Goswami | 2021-11-15 | 4 | -11/+22 |
| | | | | | | |||||
| * | | | | | DOC: F2PY build system overview | Rohit Goswami | 2021-11-15 | 1 | -1/+43 |
| | | | | | | |||||
| * | | | | | DOC: Add F77 scikit-build example | Rohit Goswami | 2021-11-15 | 4 | -0/+183 |
| | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Nick Wogan <wogan@uw.edu> | ||||
| * | | | | | MAINT: Fix build issues | Rohit Goswami | 2021-11-15 | 3 | -9/+10 |
| | | | | | | |||||
| * | | | | | DOC: Short note on the cmakelists.txt | Rohit Goswami | 2021-11-15 | 1 | -0/+7 |
| | | | | | | |||||
| * | | | | | DOC: Add note about `make` | Rohit Goswami | 2021-11-15 | 1 | -0/+4 |
| | | | | | | |||||
| * | | | | | DOC: Add CMake with F2PY | Rohit Goswami | 2021-11-15 | 5 | -2/+117 |
| | | | | | | |||||
| * | | | | | DOC: Detail Meson and F2PY usage | HaoZeke | 2021-11-15 | 7 | -11/+182 |
| |/ / / / | |||||
* | | | | | Merge pull request #20274 from h-vetinari/fix_15179 | Charles Harris | 2021-11-15 | 1 | -19/+14 |
|\ \ \ \ \ | | | | | | | | | | | | | TST: Some fixes & refactoring around glibc-dependent skips in test_umath.py | ||||
| * | | | | | TST: parametrize glibc-version check in test_umath.py | H. Vetinari | 2021-11-02 | 1 | -5/+4 |
| | | | | | | |||||
| * | | | | | TST: skip coverage of large elements in sincos_float32 for ancient glibc | H. Vetinari | 2021-11-02 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #15179 | ||||
| * | | | | | TST: use existence of glibc-version to clean up a test | H. Vetinari | 2021-11-02 | 1 | -12/+5 |
| | | | | | | |||||
| * | | | | | TST: turn glibc_older_than_2.17 into boolean instead of xfail | H. Vetinari | 2021-11-02 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | this anticipates reuse of this boolean within the test module | ||||
* | | | | | | Merge pull request #20327 from seberg/rename-interpolation | Charles Harris | 2021-11-15 | 8 | -245/+366 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | BUG,DEP: Fixup quantile/percentile and rename interpolation->method | ||||
| * | | | | | | DOC: Fixups for interpolation rename comments from review | Sebastian Berg | 2021-11-15 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Charles Harris <charlesr.harris@gmail.com> | ||||
| * | | | | | | DOC: Add release not for quantile `interpolation` rename | Sebastian Berg | 2021-11-12 | 1 | -7/+12 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also updates the old release note to include the info (and generally tweaks it a bit) | ||||
| * | | | | | | DOC: Update percentile/quantile docs | Sebastian Berg | 2021-11-12 | 2 | -60/+72 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mainly fixes the method list slightly, tones down the warning a bit and fixes the link to the paper (I did not realize that the link failed to work due only because the reference was missing from nanquantile/nanpercentile). | ||||
| * | | | | | | DOC: Add ticks to quantile interpolation/method error | Sebastian Berg | 2021-11-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: abel <aoun@cerfacs.fr> | ||||
| * | | | | | | DOC: Remove reference to paper from quantile `method` kwarg | Sebastian Berg | 2021-11-12 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apparently, sphinx does not resolve references to footnotes from parameter descriptions. | ||||
| * | | | | | | MAINT: Rename interpolation to method in percentile stubs | Sebastian Berg | 2021-11-12 | 2 | -15/+15 |
| | | | | | | |