Skip to content

Commit a131bb2

Browse files
committed
Pin numpy >=1.23 to install latest numpy version
1 parent 70b395d commit a131bb2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
- name: Install dpnp
163163
run: |
164164
mamba create -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=${{ env.PACKAGE_VERSION }} pytest python=${{ matrix.python }} ${{ env.TEST_CHANNELS }}
165-
mamba activate ${{ env.TEST_ENV_NAME }}
165+
conda activate ${{ env.TEST_ENV_NAME }}
166166
env:
167167
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
168168
MAMBA_NO_LOW_SPEED_LIMIT: 1
@@ -286,7 +286,7 @@ jobs:
286286
run: |
287287
@echo on
288288
mamba create -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=${{ env.PACKAGE_VERSION }} pytest python=${{ matrix.python }} ${{ env.TEST_CHANNELS }}
289-
mamba activate ${{ env.TEST_ENV_NAME }}
289+
conda activate ${{ env.TEST_ENV_NAME }}
290290
env:
291291
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
292292
MAMBA_NO_LOW_SPEED_LIMIT: 1

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requirements:
1212
host:
1313
- python
1414
- setuptools
15-
- numpy
15+
- numpy >=1.23
1616
- cython
1717
- cmake >=3.21
1818
- ninja

0 commit comments

Comments
 (0)