Skip to content

Commit 471292d

Browse files
authored
Merge branch 'main' into add-ilp64
2 parents edde112 + 5a03441 commit 471292d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Build conda package
5454
run: |
55-
CHANNELS="-c conda-forge -c https://software.repos.intel.com/python/conda --override-channels"
55+
CHANNELS="-c https://software.repos.intel.com/python/conda -c conda-forge --override-channels"
5656
VERSIONS="--python ${{ matrix.python }}"
5757
TEST="--no-test"
5858
echo "CONDA_BLD=${CONDA}/conda-bld/linux-64" >> $GITHUB_ENV
@@ -80,7 +80,7 @@ jobs:
8080
runner: [ubuntu-latest]
8181
continue-on-error: ${{ matrix.experimental }}
8282
env:
83-
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
83+
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels
8484

8585
steps:
8686
- name: Download artifact
@@ -193,7 +193,7 @@ jobs:
193193
- name: Build conda package
194194
run: |
195195
conda activate
196-
conda build --no-test --python ${{ matrix.python }} -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels conda-recipe
196+
conda build --no-test --python ${{ matrix.python }} -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels conda-recipe
197197
198198
- name: Upload artifact
199199
uses: actions/[email protected]
@@ -215,7 +215,7 @@ jobs:
215215
continue-on-error: ${{ matrix.experimental }}
216216
env:
217217
workdir: '${{ github.workspace }}'
218-
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
218+
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels
219219

220220
steps:
221221
- name: Download artifact

mkl_umath/tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_args(args_str):
4444
elif s == 'i':
4545
args.append(np.int_(np.random.randint(low=1, high=10)))
4646
elif s == 'l':
47-
args.append(np.int64(np.random.randint(low=1, high=10)))
47+
args.append(np.dtype('long').type(np.random.randint(low=1, high=10)))
4848
elif s == 'q':
4949
args.append(np.int64(np.random.randint(low=1, high=10)))
5050
else:

0 commit comments

Comments
 (0)