Skip to content
Closed
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
8 changes: 1 addition & 7 deletions conda/faiss/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,43 +45,37 @@ outputs:
- make =4.4 # [osx and arm64]
{% if PY_VER == '3.9' or PY_VER == '3.10' or PY_VER == '3.11' %}
- mkl-devel =2023.0 # [x86_64]
- liblief =0.12.3 # [not win]
- python_abi <3.12
{% elif PY_VER == '3.12' %}
- mkl-devel >=2023.2.0 # [x86_64 and not win]
- mkl-devel =2023.1.0 # [x86_64 and win]
- liblief =0.14.1 # [not win]
- python_abi =3.12
{% endif %}
host:
- python {{ python }}
{% if PY_VER == '3.9' or PY_VER == '3.10' or PY_VER == '3.11' %}
- mkl =2023.0 # [x86_64]
- liblief =0.12.3 # [not win]
- python_abi <3.12
{% elif PY_VER == '3.12' %}
- mkl >=2023.2.0 # [x86_64 and not win]
- mkl =2023.1.0 # [x86_64 and win]
- liblief =0.14.1 # [not win]
- python_abi =3.12
{% endif %}
- openblas =0.3.29 # [not x86_64]
run:
- python {{ python }}
{% if PY_VER == '3.9' or PY_VER == '3.10' or PY_VER == '3.11' %}
- mkl =2023.0 # [x86_64]
- liblief =0.12.3 # [not win]
- python_abi <3.12
{% elif PY_VER == '3.12' %}
- mkl >=2023.2.0 # [x86_64 and not win]
- mkl =2023.1.0 # [x86_64 and win]
- liblief =0.15.1 # [not win]
- python_abi =3.12
{% endif %}
- openblas =0.3.29 # [not x86_64]
test:
requires:
- conda-build
- conda-build =25.1.2
commands:
- test -f $PREFIX/lib/libfaiss$SHLIB_EXT # [not win]
- test -f $PREFIX/lib/libfaiss_avx2$SHLIB_EXT # [x86_64 and not win]
Expand Down
Loading