Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Mar 6, 2023

  1. Merge pull request #23335 from tylerjereddy/treddy_issue_22041

    BUG: ma with structured dtype
    mhvk committed Mar 6, 2023
  2. Merge pull request #22982 from yamadafuyuka/add_fujitsuccompiler_and_…

    …SSL2
    
    ENH: add support for fujitsu C/C++ compiler and SSL2 to numpy.
    seberg committed Mar 6, 2023

Commits on Mar 5, 2023

  1. Merge pull request #23326 from hawkinsp/clipwrap

    TYP: Remove duplicate CLIP/WRAP/RAISE in __init__.pyi.
    charris committed Mar 5, 2023
  2. Merge pull request #23340 from BvB93/msort

    TYP: Remove two stray type-check-only re-exports of `msort`
    charris committed Mar 5, 2023
  3. Merge pull request #23103 from SimonAltrogge/typing-fix

    TYP: Fix return type to float on _FloatLike_co arguments
    BvB93 committed Mar 5, 2023
  4. Remove duplicate CLIP/WRAP/RAISE in __init__.pyi.

    These constants are defined twice in this file, to which pytype objects.
    hawkinsp committed Mar 5, 2023
  5. Merge pull request #23325 from hawkinsp/reduceat

    TYP: Replace duplicate reduce in ufunc type signature with reduceat.
    BvB93 committed Mar 5, 2023
  6. Merge pull request #23328 from hawkinsp/macomp

    TYP: Add type annotations for comparison operators to MaskedArray.
    BvB93 committed Mar 5, 2023
  7. Merge pull request #23327 from hawkinsp/fftfreq

    TYP: Mark `d` argument to fftfreq and rfftfreq as optional in type stubs
    BvB93 committed Mar 5, 2023

Commits on Mar 3, 2023

  1. BUG: ma with structured dtype

    Fixes #22041
    
    * add regression test and fix for creating a masked array with a
    structured dtype; the test is simply for lack of error in the repoducer
    
    * the concern expressed by core team in matching issue was that
    `astropy` might be negatively affected; I ran full `astropy` (hash: `c9ad7c56`)
    test suite locally with this feature branch and it seemed "ok,"
    just 1 unrelated network failure in the network-requiring tests
    (`test_ftp_tls_auto`):
    
    ```1 failed, 21430 passed, 3490 skipped, 176 xfailed, 23275 warnings in
    430.18s (0:07:10)```
    tylerjereddy committed Mar 3, 2023
  2. Merge pull request #23333 from charris/ignore-hadolink-error

    MAINT: Ignore hadolint info error DL3059.
    charris committed Mar 3, 2023
  3. MAINT: Ignore hadolint info error DL3059.

    That is a suggestion to consolidate run lines. I suppose we could
    raise the error threshold from the current "info" level, but it
    seems easier to just ignore what is effectively a "style" error.
    
    [skip ci] [skip cirrus]
    charris committed Mar 3, 2023
  4. Merge pull request #23332 from charris/update-action-versions

    MAINT: Make hadolint version more explicit.
    charris committed Mar 3, 2023
  5. MAINT: Make hadolint version more explicit.

    [skip ci]
    charris committed Mar 3, 2023
  6. Merge pull request #23329 from charris/update-action-versions

    MAINT: Update actions in gitpod/docker workflows
    charris committed Mar 3, 2023
  7. MAINT: Update actions in gitpod/docker workflows

    Update the following actions to see if the deprecation warnings for
    `save-state` and `set-output` gitpod are fixed.
    
    - hadolint-action (->v3)
    - login-action (->v2)
    - setup-buildx-action (->v2)
    
    Gitpod is only run on merge, so cannot be tested prior to that.
    charris committed Mar 3, 2023
  8. Add type annotations for comparison operators to MaskedArray.

    The comparison operators seem to be missing annotations; whereas pretty
    much every other operator is annotated.
    
    This causes pytype to conclude that the output of, say, __gt__ is a
    regular ndarray, which isn't true.
    hawkinsp committed Mar 3, 2023
  9. Mark d argument to fftfreq and rfftfreq as optional in type stubs.

    The type stubs incorrectly mark this argument as mandatory.
    hawkinsp committed Mar 3, 2023
  10. Replace duplicate reduce in ufunc type signature with reduceat.

    Presumably this is a typo: ufuncs have both reduce and reduceat.
    hawkinsp committed Mar 3, 2023
  11. Merge pull request #23317 from larrybradley/fix-typos

    DOC: fix typos
    mattip committed Mar 3, 2023
  12. Merge pull request #23321 from charris/update-gitpod-build

    MAINT: Fix failing gitpod build.
    mattip committed Mar 3, 2023
  13. MAINT: Fix failing gitpod build.

    The gitpod builds have begun failing, this PR updates the
    `build-push-action` command to version 4 to check if that fixes the
    problem. Note the the build only runs on merge, so the PR tests won't
    help, but a version update is probably a good idea anyway. See gh-23320
    for more information.
    charris committed Mar 3, 2023

Commits on Mar 2, 2023

  1. Merge pull request #23314 from rgommers/depr-product-and-co

    DEP: deprecate `product`, `cumproduct`, `sometrue`, `alltrue`
    charris committed Mar 2, 2023
  2. Merge pull request #23318 from ngoldbaum/arraydescr-new-fix

    BUG: Fix reference counting error in arraydescr_new
    seberg committed Mar 2, 2023
  3. MAINT: add dates/versions to deprecations, fix linter complaint

    [skip cirrus] [skip circle]
    rgommers committed Mar 2, 2023
  4. DOC: fix typos

    larrybradley committed Mar 2, 2023
  5. MAINT: Change file name to fix circleci failure.

    Rename `23314.deprecations,rst` to `23314,deprecation,rst`
    charris committed Mar 2, 2023
  6. DEP: deprecate product, cumproduct, sometrue, alltrue

    [skip cirrus]
    rgommers committed Mar 2, 2023
  7. Merge pull request #23311 from F3eQnxN3RriK/fix-docs-typo

    DOC: Fix a typo
    Mukulikaa committed Mar 2, 2023
  8. DOC: Fixed meshgrid docstring return type (#23310)

    Meshgrid returns a list of ndarrays.
    
    Co-authored-by: 渡邉 美希 <miki.watanabe@watanabenoMacBook-Pro.local>
    MikiPWata and 渡邉 美希 committed Mar 2, 2023

Commits on Mar 1, 2023

  1. Merge pull request #23302 from rgommers/depr-round-around

    DEP: deprecate `np.round_`; add `round`/`min`/`max` to the docs
    charris committed Mar 1, 2023
Older