summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #20388 from ARCCA/arm_neon_fixesMatti Picus2021-11-171-2/+2
|\ | | | | Update ARM cpu_asimdfhm.c check
| * Update cpu_asimdfhm.cThomas Green2021-11-161-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-howtoMatti Picus2021-11-175-3/+361
|\ \ | | | | | | DOC: Created an indexing how-to
| * | DOC: Minor typos and improvement in explanationsMukulika2021-11-112-38/+67
| | |
| * | DOC: Added and modified examplesMukulika2021-11-113-40/+89
| | | | | | | | | | | | Also fixed minor typos and styling errors
| * | DOC: Added Nicolas Rougier's exercisesMukulika2021-11-111-10/+58
| | |
| * | DOC: Created an indexing how-toMukulika2021-11-113-0/+232
| | |
* | | Merge pull request #20147 from ↵Matti Picus2021-11-171-1/+2
|\ \ \ | | | | | | | | | | | | | | | | arushi-08/updated-docstring-for-binary-file-object DOC: updated docstring for binary file object
| * | | DOC: updated file object docstringArushi Sharma2021-10-261-1/+1
| | | |
| * | | DOC: updated docstring for binary file objectArushi Sharma2021-10-211-1/+2
| | | |
* | | | Merge pull request #20244 from MuhammadMotawe/clarify-sqrt-behaviorMatti Picus2021-11-172-0/+10
|\ \ \ \ | | | | | | | | | | DOC: Clarify behavior of ``np.lib.scimath.sqrt`` apropos -0.0
| * | | | MAINT: Address review commentsMuhammad Motawe2021-10-301-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 0Muhammad Motawe2021-10-302-0/+15
| | | | |
| * | | | BUG: `VOID_nonzero` could sometimes mutate alignment flagSebastian Berg2021-10-302-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-docsMatti Picus2021-11-171-0/+21
|\ \ \ \ \ | | | | | | | | | | | | DOC: document how to skip CI jobs
| * | | | | remove appveyorMatti Picus2021-10-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [skip github] [skip travis]
| * | | | | DOC: document how to skip CI jobsRalf Gommers2021-10-201-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-depsSebastian Berg2021-11-171-1/+1
|\ \ \ \ \ | | | | | | | | | | | | CI: CircleCI: Install numpy after processing doc_requirements.txt
| * | | | | CI: CircleCI: Install numpy after processing doc_requirements.txtwarren2021-11-171-1/+1
|/ / / / /
* | | | | Merge pull request #20387 from charris/prepare-main-for-1.23.0-developmentCharles Harris2021-11-1642-295/+50
|\ \ \ \ \ | |_|_|_|/ |/| | | | REL: Prepare main for NumPy 1.23.0 development
| * | | | REL: Prepare main for NumPy 1.23.0 developmentCharles Harris2021-11-1642-295/+50
|/ / / /
* | | | REL: Begin NumPy 1.23.0 developmentv1.23.0.dev0Charles Harris2021-11-160-0/+0
| | | |
* | | | REL: Begin NumPy 1.22.0 developmentCharles Harris2021-11-160-0/+0
| | | |
* | | | REV: Add MaskedArray creation from non nd-array back in (#20386)Greg Lucas2021-11-162-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-truncMatti Picus2021-11-167-8/+85
|\ \ \ \ | | | | | | | | | | ENH, SIMD: add new universal intrinsics for trunc
| * | | | ENH, SIMD: add new universal intrinsics for truncHowJMay2021-11-167-8/+85
| | | | |
* | | | | Merge pull request #20182 from HaoZeke/buildf2pydocRalf Gommers2021-11-1615-13/+644
|\ \ \ \ \ | | | | | | | | | | | | DOC, MAINT: Update build systems for f2py
| * | | | | DOC: Address build system review IRohit Goswami2021-11-165-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 wrappersRohit Goswami2021-11-154-4/+75
| | | | | |
| * | | | | DOC: Fix omission in build docsRohit Goswami2021-11-151-4/+14
| | | | | |
| * | | | | DOC: Add signature file build informationRohit Goswami2021-11-154-11/+22
| | | | | |
| * | | | | DOC: F2PY build system overviewRohit Goswami2021-11-151-1/+43
| | | | | |
| * | | | | DOC: Add F77 scikit-build exampleRohit Goswami2021-11-154-0/+183
| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Nick Wogan <wogan@uw.edu>
| * | | | | MAINT: Fix build issuesRohit Goswami2021-11-153-9/+10
| | | | | |
| * | | | | DOC: Short note on the cmakelists.txtRohit Goswami2021-11-151-0/+7
| | | | | |
| * | | | | DOC: Add note about `make`Rohit Goswami2021-11-151-0/+4
| | | | | |
| * | | | | DOC: Add CMake with F2PYRohit Goswami2021-11-155-2/+117
| | | | | |
| * | | | | DOC: Detail Meson and F2PY usageHaoZeke2021-11-157-11/+182
| |/ / / /
* | | | | Merge pull request #20274 from h-vetinari/fix_15179Charles Harris2021-11-151-19/+14
|\ \ \ \ \ | | | | | | | | | | | | TST: Some fixes & refactoring around glibc-dependent skips in test_umath.py
| * | | | | TST: parametrize glibc-version check in test_umath.pyH. Vetinari2021-11-021-5/+4
| | | | | |
| * | | | | TST: skip coverage of large elements in sincos_float32 for ancient glibcH. Vetinari2021-11-021-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #15179
| * | | | | TST: use existence of glibc-version to clean up a testH. Vetinari2021-11-021-12/+5
| | | | | |
| * | | | | TST: turn glibc_older_than_2.17 into boolean instead of xfailH. Vetinari2021-11-021-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | this anticipates reuse of this boolean within the test module
* | | | | | Merge pull request #20327 from seberg/rename-interpolationCharles Harris2021-11-158-245/+366
|\ \ \ \ \ \ | | | | | | | | | | | | | | BUG,DEP: Fixup quantile/percentile and rename interpolation->method
| * | | | | | DOC: Fixups for interpolation rename comments from reviewSebastian Berg2021-11-152-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Charles Harris <charlesr.harris@gmail.com>
| * | | | | | DOC: Add release not for quantile `interpolation` renameSebastian Berg2021-11-121-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also updates the old release note to include the info (and generally tweaks it a bit)
| * | | | | | DOC: Update percentile/quantile docsSebastian Berg2021-11-122-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 errorSebastian Berg2021-11-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: abel <aoun@cerfacs.fr>
| * | | | | | DOC: Remove reference to paper from quantile `method` kwargSebastian Berg2021-11-122-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apparently, sphinx does not resolve references to footnotes from parameter descriptions.
| * | | | | | MAINT: Rename interpolation to method in percentile stubsSebastian Berg2021-11-122-15/+15
| | | | | | |