summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | | | | | Merge pull request #23437 from partev/patch-1Charles Harris2023-03-231-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: fix broken link to SciPy Tutorial
| * | | | | | | | | | | | | | | DOC: fix broken link to SciPy Tutorialpartev2023-03-231-1/+1
| |/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge pull request #23438 from partev/patch-3Charles Harris2023-03-231-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: fix a link redirect to WSL
| * | | | | | | | | | | | | | | DOC: fix a link redirect to WSLpartev2023-03-231-1/+1
| |/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge pull request #23439 from ↵Charles Harris2023-03-232-4/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/github/codeql-action-2.2.8 MAINT: Bump github/codeql-action from 2.2.7 to 2.2.8
| * | | | | | | | | | | | | | Bump github/codeql-action from 2.2.7 to 2.2.8dependabot[bot]2023-03-232-4/+4
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.2.7 to 2.2.8. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/168b99b3c22180941ae7dbdd5f5c9678ede476ba...67a35a08586135a9573f4327e904ecbf517a882d) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | | Merge pull request #23404 from ngoldbaum/dtype-class-array-creationSebastian Berg2023-03-239-72/+199
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | ENH: allow using dtype classes in array creation functions
| * | | | | | | | | | | | | MAINT: add test for string dtype discovery from a dtypemetaNathan Goldbaum2023-03-201-0/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | MAINT: Simplify reference counting in the np.array() internal codeSebastian Berg2023-03-201-54/+35
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | MAINT: respond to review commentsNathan Goldbaum2023-03-202-17/+27
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | MAINT: move npy_dtype_info definition back to descriptor.hNathan Goldbaum2023-03-208-18/+13
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | MAINT: avoid calling PyArray_AdaptDescriptorToArray in some casesNathan Goldbaum2023-03-171-4/+26
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | MAINT: Indicate private functions with _int suffix.Nathan Goldbaum2023-03-173-35/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also make internal versions accept a dtype and a descriptor.
| * | | | | | | | | | | | | BUG: handle errors from PyArray_AdaptDescriptorToArrayNathan Goldbaum2023-03-171-0/+5
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | ENH: allow using dtype classes in array creation functionsNathan Goldbaum2023-03-1716-71/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This enables writing np.array(some_object, dtype=type(np.dtype('i'))). This is a follow-on from https://github.com/numpy/numpy/pull/23154, see that PR for more details. I had to add a new include to `ctors.h` to bring in the definition of the `npy_dtype_info` struct. Since `ctors.h` is included in many other files inside numpy, I found that I needed to modify fewer includes across numpy if I moved the definition of `npy_dtype_info` to `common.h` from `descriptor.h`. The new includes of `common.h` are needed to support later includes of `ctors.h` in those files. If anyone has an alternate place to put `npy_dtype_info` that would cause less churn of includes I'd love to hear about it. I spent a bunch of time tweaking the reference counts. I'm reasonably confident this is correct but not 100%, an additional careful pass over the reference count logic from a reviewer would be very appreciated. I could have made `_PyArray_FromAny` and `_PyArray_CheckFromAny` take just a `npy_dtype_info` struct, but I found it made the reference count logic more complicated, since `PyArray_FromAny` and `PyArray_CheckFromAny` steal the reference to the descriptor they are passed and I needed to conserve that behavior. Also both functions support passing in a `NULL` pointer for the descriptor and I needed to maintain that behavior as well. The change to `ucsnarrow.h` fixes a preexisting conflict with the prototype in `ucsnarrow.c` that triggered a compiler error while I was working on this.
* | | | | | | | | | | | | | Merge pull request #23240 from byrdie/bugfix/ufunc_where_propagationSebastian Berg2023-03-2211-16/+140
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | ENH: Allow ``where`` argument to override ``__array_ufunc__``
| * | | | | | | | | | | | | ENH: Modified `PyUFunc_CheckOverride` to allow the `where` argument to ↵Roy Smart2023-02-2411-16/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | override `__array_ufunc__`.
* | | | | | | | | | | | | | Merge pull request #23430 from ChVeen/Fix-several-typos-in-sourcesCharles Harris2023-03-211-8/+8
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / / / |/| | | | | | | | | | | | | MAINT: Fix 'tranform' and 'paramter' typos
| * | | | | | | | | | | | | MAINT: Fix 'paramteric' typoChristian Veenhuis2023-03-211-8/+8
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #23427 from ↵Charles Harris2023-03-201-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/actions/dependency-review-action-3.0.4 Bump actions/dependency-review-action from 3.0.3 to 3.0.4
| * | | | | | | | | | | | | Bump actions/dependency-review-action from 3.0.3 to 3.0.4dependabot[bot]2023-03-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 3.0.3 to 3.0.4. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/c090f4e553673e6e505ea70d6a95362ee12adb94...f46c48ed6d4f1227fb2d9ea62bf6bcbed315589e) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | | Merge pull request #23428 from ↵Charles Harris2023-03-201-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/larsoner/circleci-artifacts-redirector-action-1e28a97d7b1e273a8f78ed4692bfd10f84706a45 Bump larsoner/circleci-artifacts-redirector-action from 590e7142d7dc855dabe2e9225fa4a5694b76b7cb to 1e28a97d7b1e273a8f78ed4692bfd10f84706a45
| * | | | | | | | | | | | | Bump larsoner/circleci-artifacts-redirector-actiondependabot[bot]2023-03-201-1/+1
|/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [larsoner/circleci-artifacts-redirector-action](https://github.com/larsoner/circleci-artifacts-redirector-action) from 590e7142d7dc855dabe2e9225fa4a5694b76b7cb to 1e28a97d7b1e273a8f78ed4692bfd10f84706a45. - [Release notes](https://github.com/larsoner/circleci-artifacts-redirector-action/releases) - [Commits](https://github.com/larsoner/circleci-artifacts-redirector-action/compare/590e7142d7dc855dabe2e9225fa4a5694b76b7cb...1e28a97d7b1e273a8f78ed4692bfd10f84706a45) --- updated-dependencies: - dependency-name: larsoner/circleci-artifacts-redirector-action dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | BUG: Fix busday_count for reversed dates (#23229)Pieter Eendebak2023-03-203-3/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #23197
* | | | | | | | | | | | | DOC: Update wording related to recommended np alias (#23424)Michail Gaganis2023-03-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Mike-gag <gaganis.michail@gmail.com>
* | | | | | | | | | | | | Merge pull request #23411 from rgommers/codespaces-updateSebastian Berg2023-03-182-6/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | DEV: use micromamba to set up Codespaces
| * | | | | | | | | | | | | DEV: use micromamba to set up CodespacesRalf Gommers2023-03-172-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is faster, and allows using 2-core instances instead of requiring a minimum of 8 GB / 4 cores. [skip ci]
* | | | | | | | | | | | | | Merge pull request #23407 from jarrodmillman/devpy2spinSebastian Berg2023-03-188-38/+38
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | MAINT: Rename devpy to spin
| * | | | | | | | | | | | | Rename devpy to spinJarrod Millman2023-03-178-38/+38
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #23403 from mattip/clip-cleanupSebastian Berg2023-03-163-112/+24
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | DEP: remove deprecated casting in np.clip
| * | | | | | | | | | | | | DOC: update release noteMatti Picus2023-03-171-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
| * | | | | | | | | | | | | Rename 23403.deprecation.rst to 23403.expired.rstSebastian Berg2023-03-161-0/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | DOC: add release noteMatti Picus2023-03-161-0/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | DEP: remove deprecated casting in np.clipMatti Picus2023-03-162-112/+20
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matti Picus <matti.picus@gmail.com>
* | | | | | | | | | | | | Merge pull request #23408 from XPhyro/fix-extra-spaceSebastian Berg2023-03-161-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: fix extra space in error message
| * | | | | | | | | | | | | DOC: fix extra space in error messageBerke Kocaoğlu2023-03-161-1/+1
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #23406 from ↵Charles Harris2023-03-1611-31/+31
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/actions/checkout-3.4.0 Bump actions/checkout from 3.3.0 to 3.4.0
| * | | | | | | | | | | | Bump actions/checkout from 3.3.0 to 3.4.0dependabot[bot]2023-03-1611-31/+31
|/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.3.0...24cb9080177205b6e8c946b17badbe402adc938f) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | Merge pull request #23397 from ↵Charles Harris2023-03-151-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/actions/dependency-review-action-3.0.3 Bump actions/dependency-review-action from 2.5.1 to 3.0.3
| * | | | | | | | | | | | Bump actions/dependency-review-action from 2.5.1 to 3.0.3dependabot[bot]2023-03-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 2.5.1 to 3.0.3. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/0efb1d1d84fc9633afcdaad14c485cbbc90ef46c...c090f4e553673e6e505ea70d6a95362ee12adb94) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | Merge pull request #23396 from ↵Charles Harris2023-03-152-4/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/github/codeql-action-2.2.7 Bump github/codeql-action from 2.2.5 to 2.2.7
| * | | | | | | | | | | | | Bump github/codeql-action from 2.2.5 to 2.2.7dependabot[bot]2023-03-152-4/+4
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.2.5 to 2.2.7. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2.2.5...168b99b3c22180941ae7dbdd5f5c9678ede476ba) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | Merge pull request #23395 from ↵Charles Harris2023-03-152-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/actions/cache-3.3.1 Bump actions/cache from 3.2.6 to 3.3.1
| * | | | | | | | | | | | Bump actions/cache from 3.2.6 to 3.3.1dependabot[bot]2023-03-152-2/+2
|/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/69d9d449aced6a2ede0bc19182fadc3a0a42d2b0...88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | Merge pull request #23389 from ↵Charles Harris2023-03-141-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/egor-tensin/cleanup-path-3 Bump egor-tensin/cleanup-path from 1 to 3
| * | | | | | | | | | | | Bump egor-tensin/cleanup-path from 1 to 3dependabot[bot]2023-03-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [egor-tensin/cleanup-path](https://github.com/egor-tensin/cleanup-path) from 1 to 3. - [Release notes](https://github.com/egor-tensin/cleanup-path/releases) - [Commits](https://github.com/egor-tensin/cleanup-path/compare/39324b3c13fae7f8237b32d446b474ba9f135531...8469525c8ee3eddabbd3487658621a6235b3c581) --- updated-dependencies: - dependency-name: egor-tensin/cleanup-path dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | Merge pull request #23391 from ↵Charles Harris2023-03-142-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/docker/setup-buildx-action-2.5.0 Bump docker/setup-buildx-action from 2.4.1 to 2.5.0
| * | | | | | | | | | | | | Bump docker/setup-buildx-action from 2.4.1 to 2.5.0dependabot[bot]2023-03-142-2/+2
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2.4.1 to 2.5.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/f03ac48505955848960e80bbb68046aa35c7b9e7...4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* | | | | | | | | | | | | Merge pull request #23390 from ↵Charles Harris2023-03-141-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | numpy/dependabot/github_actions/cygwin/cygwin-install-action-3 Bump cygwin/cygwin-install-action from 2 to 3
| * | | | | | | | | | | | | Bump cygwin/cygwin-install-action from 2 to 3dependabot[bot]2023-03-141-1/+1
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [cygwin/cygwin-install-action](https://github.com/cygwin/cygwin-install-action) from 2 to 3. - [Release notes](https://github.com/cygwin/cygwin-install-action/releases) - [Commits](https://github.com/cygwin/cygwin-install-action/compare/49f298a7ebb00d4b3ddf58000c3e78eff5fbd6b9...f5e0f048310c425e84bc789f493a828c6dc80a25) --- updated-dependencies: - dependency-name: cygwin/cygwin-install-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>