Skip to content

Commit eecf9d6

Browse files
authored
Merge branch 'master' into feature-sparse-linalg-solvers
2 parents 651aaeb + 71d3c23 commit eecf9d6

File tree

7 files changed

+7
-15
lines changed

7 files changed

+7
-15
lines changed

.github/workflows/check-onemath.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
cat ${{ env.environment-file }}
5858
5959
- name: Upload artifact
60-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
60+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6161
with:
6262
name: ${{ env.environment-file-name }}
6363
path: ${{ env.environment-file }}

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ jobs:
102102
MAX_BUILD_CMPL_MKL_VERSION: '2026.0a0'
103103

104104
- name: Upload artifact
105-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
105+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
106106
with:
107107
name: ${{ env.package-name }} ${{ runner.os }} Python ${{ matrix.python }}
108108
path: ${{ env.CONDA_BLD }}${{ env.package-name }}-*.conda
109109

110110
- name: Upload wheels artifact
111-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
111+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
112112
with:
113113
name: ${{ env.package-name }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
114114
path: ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.package-name }}-*.whl

.github/workflows/openssf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6565
# format to the repository Actions tab.
6666
- name: "Upload artifact"
67-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
67+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6868
with:
6969
name: SARIF file
7070
path: results.sarif

.github/workflows/pre-commit-autoupdate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: pre-commit autoupdate
3939

4040
- name: Create a PR with autoupdate changes
41-
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 #v8.1.0
41+
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 #v8.1.1
4242
with:
4343
commit-message: 'chore: update pre-commit hooks'
4444
add-paths: .pre-commit-config.yaml

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ repos:
8989
- flake8-docstrings==1.7.0
9090
- flake8-bugbear==24.12.12
9191
- repo: https://github.com/pre-commit/mirrors-clang-format
92-
rev: v22.1.2
92+
rev: v22.1.3
9393
hooks:
9494
- id: clang-format
9595
args: ["-i"]

dpnp/tests/test_mathematical.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from dpnp.exceptions import AxisError, ExecutionPlacementError
1818

1919
from .helper import (
20-
LTS_VERSION,
2120
assert_dtype_allclose,
2221
generate_random_numpy_array,
2322
get_abs_array,
@@ -31,7 +30,6 @@
3130
has_support_aspect16,
3231
has_support_aspect64,
3332
is_intel_numpy,
34-
is_lts_driver,
3533
numpy_version,
3634
)
3735
from .third_party.cupy import testing
@@ -216,9 +214,6 @@ def _get_exp_array(self, a, axis, dtype):
216214
@pytest.mark.parametrize("axis", [None, 2, -1])
217215
@pytest.mark.parametrize("include_initial", [True, False])
218216
def test_basic(self, dtype, axis, include_initial):
219-
if axis is None and not is_lts_driver(version=LTS_VERSION.V1_6):
220-
pytest.skip("due to SAT-8336")
221-
222217
a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)
223218
res = dpnp.cumlogsumexp(a, axis=axis, include_initial=include_initial)
224219

@@ -236,9 +231,6 @@ def test_basic(self, dtype, axis, include_initial):
236231
@pytest.mark.parametrize("axis", [None, 2, -1])
237232
@pytest.mark.parametrize("include_initial", [True, False])
238233
def test_include_initial(self, dtype, axis, include_initial):
239-
if axis is None and not is_lts_driver(version=LTS_VERSION.V1_6):
240-
pytest.skip("due to SAT-8336")
241-
242234
a = dpnp.ones((3, 4, 5, 6, 7), dtype=dtype)
243235

244236
if dpnp.issubdtype(a, dpnp.float32):

environments/create_conda_channel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ channels:
33
- conda-forge
44
dependencies:
55
- python=3.13 # no python 3.14 support by conda-index
6-
- conda-index=0.7.0
6+
- conda-index=0.10.0

0 commit comments

Comments
 (0)