Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/actions/build_conda/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ runs:
miniforge-version: latest # ensures conda-forge channel is used.
channels: conda-forge
conda-remove-defaults: 'true'
activate-environment: 'base'
# Set to runner.arch=aarch64 if we're on arm64 because
# there's no miniforge ARM64 package, just aarch64.
# They are the same thing, just named differently.
Expand All @@ -43,7 +44,7 @@ runs:
run: |
# Ensure starting packages are from conda-forge.
conda list --show-channel-urls
conda install -y -q "conda!=24.11.0,<=25.07"
conda install -y -q "conda!=24.11.0,<25.7"
conda install -y -q "conda-build=25.3.1" "liblief=0.14.1"
- name: Enable anaconda uploads
if: inputs.label != ''
Expand Down
3 changes: 2 additions & 1 deletion conda/faiss/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ outputs:
requires:
- numpy >=2.0,<3.0
- scipy
- pytorch-cpu >=2.7
- pytorch-cpu >=2.7 # [not win]
- pytorch >=2.7 # [win]
{% if PY_VER == '3.10' or PY_VER == '3.11' %}
- mkl >=2024.2.2 # [x86_64]
- python_abi <3.12
Expand Down
Loading