MAINT: Bump github/codeql-action from 3.30.2 to 4.30.7#265
Closed
dependabot[bot] wants to merge 104 commits intomainfrom
Closed
MAINT: Bump github/codeql-action from 3.30.2 to 4.30.7#265dependabot[bot] wants to merge 104 commits intomainfrom
dependabot[bot] wants to merge 104 commits intomainfrom
Conversation
[skip azp][skip cirrus][skip actions]
Fixes numpy#29247. Implements `booleantype_class_getitem_abc` and adds a `__class_getitem__` method to `np.bool` to enable subscript access (e.g., `np.bool[int]`).
This follows numpy#29569, and also fills in the missing parameter defaults, towards numpy#28428.
* DEP: Deprecate NumPy warning control utilities * TST: fix mypy tests * DEP: un-deprecate assert_no_warnings, which is thread-safe * DEP: un-deprecate clear_and_catch_warnings * TYP: update type stubs * STY: appease ruff * TST: update doctest deprecation filters * TST: fix warning test * DOC: add release note * Update numpy/tests/test_warnings.py * MNT: use stacklevel instead * TST: use pytest.deprecated_call() * MNT: fix deprecated version * Apply suggestions from code review Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net> --------- Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.7.1 to 4.7.2. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](actions/dependency-review-action@da24556...bc41886) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-version: 4.7.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.29.9 to 3.29.10. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@df55935...96f518a) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.29.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
…29052) Deprecate not using `out=` for np.minimum and maximum due to it being a common confusion.
…29594) Co-authored-by: Joren Hammudoglu <jhammudoglu@gmail.com>
Add the `ASIMDDP` feature to the `ARM_FEATURES` dictionary, to fix an error when it is explicitly listed in `cpu-baseline`. Fixes numpy#29570 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.1.3 to 3.1.4. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@352e013...c923d83) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 3.1.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
```python
(.venv) C:\apps\mapFolding>py
Python 3.13.7 (tags/v3.13.7:bcee1c3, Aug 14 2025, 14:15:11) [MSC v.1944 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> aa = numpy.zeros((4,3))
>>> aa
array([[0., 0., 0.],
[0., 0., 0.],
[0., 0., 0.],
[0., 0., 0.]])
>>> aa.fill(value=9)
Traceback (most recent call last):
File "<python-input-3>", line 1, in <module>
aa.fill(value=9)
~~~~~~~^^^^^^^^^
TypeError: ndarray.fill() takes no keyword arguments
>>> aa
array([[0., 0., 0.],
[0., 0., 0.],
[0., 0., 0.],
[0., 0., 0.]])
>>> aa.fill(9)
>>> aa
array([[9., 9., 9.],
[9., 9., 9.],
[9., 9., 9.],
[9., 9., 9.]])
>>>
```
* BUG: make round consistently return a copy Otherwise, `round` returns a view for integer arguments and a copy otherwise. All other "rounding" functions (ceil, floor, trunc, rint), always return copies. Thus, make `round` consistent with them. * DOC: add a release note snippet for the `round` change * TST: add a test for round preserving the order * MAINT: address review comments * BUG: round: NPY_KEEPORDER for complex arrays, too
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.29.10 to 3.29.11. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@96f518a...3c3833e) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.29.11 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
…m variates. (numpy#29598) In C, in an expression such as f1()/f2(), the order of evaluation of f1() and f2() is unspecified. When such a ratio was used in the C functions random_f and random_standard_cauchy, it meant the streams of random variates for the f and standard_cauchy distributions depended on how the compiler chose to order the evaluation. This could result in different streams of variates when numpy is compiled with different compilers. By evaluating the numerator and denominator in separate statements, the ambiguity is eliminated. Co-authored-by: Joren Hammudoglu <jhammudoglu@gmail.com>
- restrict Windows only - use options that are supported on all compilers
…umpy#29692) * WIP: Replace xunit setup with methods * WIP: Revert "WIP: Replace xunit setup with methods" This reverts commit 87c374f. * TST: Change setup to context manager * TST: Remove thread_unsafe marker
… parameter 'order' (numpy#29655) * DOC: clarified numpy.asarray parameter 'order' Changed description to make explicit that setting 'A' requires user to set 'copy' to 'True' to get the described behavior. Made explicit that 'A' has two cases where it acts as equivalent to setting 'F'. See 28247. * DOC: clarified numpy.asarray parameter 'order' See 28247. Changed description of 'order' to make the behavior of 'A' more explicit and how to cause it to preserve non-contiguous Fortran-order. Changed description of 'C' and 'F' to clarify that output will be contiguous. * DOC: clarified numpy.asarray() parameter 'order' See 28247. To differentiate between 'A' and 'K', made explicit that 'A' will not ensure the output is contiguous. 'K' has more complex behavior related to flags and stride detection, but will try to keep the output as close as possible to the input. * DOC: clarify numpy.asarray parameter 'order' See 28247. Made explicit that 'C' and 'F' can copy input to output, 'A' does not ensure contiguous output. * DOC numpy.asarray parameter 'order' description added line break * DOC: Additional request to change identical text blocks. * DOC: fixed linebreak position
* TST: xfail test_kind::test_quad_precision on AIX/PPC * Change to use platform.system() instead
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.30.1 to 3.30.2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@f1f6e5f...d3678e2) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.30.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
- Forward port 2.3.3-notes.rst - Forward port 2.3.3-changelog.rst - Update release.rst
This accounts for the actual release builds moving to the separate `numpy-release` repo. We want to keep a decent subset of wheel builds in the main repo and always run them, just like other CI jobs that test some config that matters.
These configs are covered by `wheels.yml`, which is now part of the regular test suite rather than off-by-default on PRs.
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.30.2 to 4.30.7. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@d3678e2...e296a93) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.30.7 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Author
|
Looks like github/codeql-action is up-to-date now, so this is no longer needed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps github/codeql-action from 3.30.2 to 4.30.7.
Release notes
Sourced from github/codeql-action's releases.
... (truncated)
Changelog
Sourced from github/codeql-action's changelog.
... (truncated)
Commits
e296a93Merge pull request #3183 from github/update-v4.30.7-55283843c93c1673Update changelog for v4.30.75528384Merge pull request #3169 from github/mario-campos/node24b66db86Hoist CHANGELOG note back to "UNRELEASED" section.b2e2232Merge remote-tracking branch 'origin/main' into mario-campos/node24065c6cfMerge pull request #3174 from github/mbg/fix/start-proxy-matrix7fb8378Re-throw exception increateStatusReportBasewhen in test modedddf033Revert changes to build.mjs54ae8baSimplify PR check by reverting changes to@types/node.65e9e64Makematrixavailable tostart-proxyactionDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)