Skip to content

Commit 0f88519

Browse files
authored
Merge branch 'main' into bump-version
2 parents 9b5be07 + 3604afc commit 0f88519

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
architecture: x64
5151

5252
- name: Checkout repo
53-
uses: actions/checkout@v4.2.2
53+
uses: actions/checkout@v5.0.0
5454
with:
5555
fetch-depth: 0
5656

.github/workflows/build_pip.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
sudo apt-get install jq
2828
2929
- name: Checkout repo
30-
uses: actions/checkout@v4.2.2
30+
uses: actions/checkout@v5.0.0
3131
with:
3232
fetch-depth: 0
3333

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
2525
with:
2626
access_token: ${{ github.token }}
27-
- uses: actions/checkout@v4.2.2
27+
- uses: actions/checkout@v5.0.0
2828
with:
2929
fetch-depth: 0
3030

@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Download artifact
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v5
8888
with:
8989
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
9090
- name: Add conda to system path
@@ -154,7 +154,7 @@ jobs:
154154
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
155155
with:
156156
access_token: ${{ github.token }}
157-
- uses: actions/checkout@v4.2.2
157+
- uses: actions/checkout@v5.0.0
158158
with:
159159
fetch-depth: 0
160160

@@ -219,7 +219,7 @@ jobs:
219219

220220
steps:
221221
- name: Download artifact
222-
uses: actions/download-artifact@v4
222+
uses: actions/download-artifact@v5
223223
with:
224224
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
225225

.github/workflows/openssf-scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: "Checkout code"
39-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4040
with:
4141
persist-credentials: false
4242

@@ -71,6 +71,6 @@ jobs:
7171

7272
# Upload the results to GitHub's code scanning dashboard.
7373
- name: "Upload to code-scanning"
74-
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
74+
uses: github/codeql-action/upload-sarif@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.8
7575
with:
7676
sarif_file: results.sarif

conda-recipe/meta.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ source:
1010

1111
build:
1212
number: {{ buildnumber }}
13+
script_env:
14+
- WHEELS_OUTPUT_FOLDER
1315
ignore_run_exports:
1416
- blas
1517

@@ -30,10 +32,11 @@ requirements:
3032
- mkl-devel
3133
- tbb-devel
3234
- numpy-base
35+
- wheel >=0.41.3
3336
run:
3437
- python
3538
- {{ pin_compatible('intel-cmplr-lib-rt') }}
36-
- {{ pin_compatible('numpy') }}
39+
- {{ pin_compatible('numpy-base') }}
3740

3841
test:
3942
requires:
@@ -52,3 +55,12 @@ about:
5255
license: BSD-3
5356
license_file: LICENSE.txt
5457
summary: Universal functions for real and complex floating point arrays powered by Intel(R) Math Kernel Library Vector (Intel(R) MKL) and Intel(R) Short Vector Math Library (Intel(R) SVML)
58+
description: |
59+
<strong>LEGAL NOTICE: Use of this software package is subject to the
60+
software license agreement (as set forth above, in the license section of
61+
the installed Conda package and/or the README file) and all notices,
62+
disclaimers or license terms for third party or open source software
63+
included in or with the software.</strong>
64+
<br/><br/>
65+
EULA: <a href="https://opensource.org/licenses/BSD-3-Clause" target="_blank">BSD-3-Clause</a>
66+
<br/><br/>

0 commit comments

Comments
 (0)