Skip to content

Commit

Permalink
Use miniforge, do not pin numpy version used at build to 2.0, use >=2
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Sep 12, 2024
1 parent 8b25773 commit 231bc42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
- uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: true
miniforge-version: latest
conda-build-version: "*"
activate-environment: true
python-version: ${{ matrix.python }}
Expand All @@ -109,7 +110,7 @@ jobs:
- name: Build conda package
env:
OVERRIDE_INTEL_IPO: 1 # IPO requires more resources that GH actions VM provides
run: conda build --no-test --python ${{ matrix.python }} --numpy 2.0 -c conda-forge --override-channels conda-recipe
run: conda build --no-test --python ${{ matrix.python }} --numpy ">=2" -c conda-forge --override-channels conda-recipe
- name: Upload artifact
uses: actions/upload-artifact@v4.4.0
with:
Expand Down

0 comments on commit 231bc42

Please sign in to comment.