Skip to content

Commit 4d017af

Browse files
authored
Merge branch 'master' into dependabot/github_actions/actions/download-artifact-8.0.1
2 parents 48ba9ca + 19efa58 commit 4d017af

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Cancel Previous Runs
50-
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
50+
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1
5151
with:
5252
access_token: ${{ github.token }}
5353

.github/workflows/check-onemath.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Cancel Previous Runs
37-
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
37+
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1
3838
with:
3939
access_token: ${{ github.token }}
4040

.github/workflows/conda-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- name: Cancel Previous Runs
52-
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
52+
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1
5353
with:
5454
access_token: ${{ github.token }}
5555

.github/workflows/cron-run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Cancel Previous Runs
46-
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
46+
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1
4747
with:
4848
access_token: ${{ github.token }}
4949

.github/workflows/generate_coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Cancel Previous Runs
36-
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
36+
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1
3737
with:
3838
access_token: ${{ github.token }}
3939

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ repos:
6464
additional_dependencies:
6565
- tomli
6666
- repo: https://github.com/psf/black
67-
rev: 26.3.0
67+
rev: 26.3.1
6868
hooks:
6969
- id: black
7070
exclude: "dpnp/_version.py"
@@ -94,7 +94,7 @@ repos:
9494
- id: clang-format
9595
args: ["-i"]
9696
- repo: https://github.com/gitleaks/gitleaks
97-
rev: v8.30.0
97+
rev: v8.30.1
9898
hooks:
9999
- id: gitleaks
100100
- repo: https://github.com/jumanjihouse/pre-commit-hooks
@@ -127,7 +127,7 @@ repos:
127127
hooks:
128128
- id: actionlint
129129
- repo: https://github.com/BlankSpruce/gersemi
130-
rev: 0.26.0
130+
rev: 0.26.1
131131
hooks:
132132
- id: gersemi
133133
exclude: "dpnp/backend/cmake/Modules/"

dpnp/tests/test_special.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ def test_erfc(self, inverse):
106106
atol=self.tol,
107107
)
108108

109+
@pytest.mark.usefixtures(
110+
"suppress_overflow_encountered_in_cast_numpy_warnings"
111+
)
109112
def test_erfcx(self, inverse):
110113
self._check_variant_func(
111114
inverse,

0 commit comments

Comments
 (0)