main
Name already in use
Commits on Mar 6, 2023
-
Merge pull request #23335 from tylerjereddy/treddy_issue_22041
BUG: ma with structured dtype
-
Merge pull request #22982 from yamadafuyuka/add_fujitsuccompiler_and_…
…SSL2 ENH: add support for fujitsu C/C++ compiler and SSL2 to numpy.
Commits on Mar 5, 2023
-
Merge pull request #23326 from hawkinsp/clipwrap
TYP: Remove duplicate CLIP/WRAP/RAISE in __init__.pyi.
-
Merge pull request #23340 from BvB93/msort
TYP: Remove two stray type-check-only re-exports of `msort`
-
Merge pull request #23103 from SimonAltrogge/typing-fix
TYP: Fix return type to float on _FloatLike_co arguments
-
-
Remove duplicate CLIP/WRAP/RAISE in __init__.pyi.
These constants are defined twice in this file, to which pytype objects.
-
Merge pull request #23325 from hawkinsp/reduceat
TYP: Replace duplicate reduce in ufunc type signature with reduceat.
-
Merge pull request #23328 from hawkinsp/macomp
TYP: Add type annotations for comparison operators to MaskedArray.
-
Merge pull request #23327 from hawkinsp/fftfreq
TYP: Mark `d` argument to fftfreq and rfftfreq as optional in type stubs
Commits on Mar 3, 2023
-
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)```
-
Merge pull request #23333 from charris/ignore-hadolink-error
MAINT: Ignore hadolint info error DL3059.
-
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]
-
Merge pull request #23332 from charris/update-action-versions
MAINT: Make hadolint version more explicit.
-
Merge pull request #23329 from charris/update-action-versions
MAINT: Update actions in gitpod/docker workflows
-
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.
-
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.
-
Mark
d
argument to fftfreq and rfftfreq as optional in type stubs.The type stubs incorrectly mark this argument as mandatory.
-
Replace duplicate reduce in ufunc type signature with reduceat.
Presumably this is a typo: ufuncs have both reduce and reduceat.
-
Merge pull request #23321 from charris/update-gitpod-build
MAINT: Fix failing gitpod build.
-
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.
Commits on Mar 2, 2023
-
Merge pull request #23314 from rgommers/depr-product-and-co
DEP: deprecate `product`, `cumproduct`, `sometrue`, `alltrue`
-
Merge pull request #23318 from ngoldbaum/arraydescr-new-fix
BUG: Fix reference counting error in arraydescr_new
-
MAINT: add dates/versions to deprecations, fix linter complaint
[skip cirrus] [skip circle]
-
-
-
MAINT: Change file name to fix circleci failure.
Rename `23314.deprecations,rst` to `23314,deprecation,rst`
-
ENH: add support for fujitsu C/C++ compiler and SSL2 to numpy.
yamadafuyuka committedMar 2, 2023 -
Merge pull request #23311 from F3eQnxN3RriK/fix-docs-typo
DOC: Fix a typo
-
DOC: Fixed meshgrid docstring return type (#23310)
Meshgrid returns a list of ndarrays. Co-authored-by: 渡邉 美希 <miki.watanabe@watanabenoMacBook-Pro.local>
Commits on Mar 1, 2023
-
Merge pull request #23302 from rgommers/depr-round-around
DEP: deprecate `np.round_`; add `round`/`min`/`max` to the docs