Skip to content

Commit

Permalink
Merge pull request #1045 from hamelin/drop-tbb-on-non-intel
Browse files Browse the repository at this point in the history
Drop dependency on TBB on non-Intel deployments
  • Loading branch information
lmcinnes committed Aug 22, 2023
2 parents 4ea79eb + 67a2d0c commit 91a914a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import platform
from setuptools import setup


Expand Down Expand Up @@ -49,9 +50,8 @@ def readme():
"scikit-learn >= 0.22",
"numba >= 0.51.2",
"pynndescent >= 0.5",
"tbb >= 2019.0",
"tqdm",
],
] + (["tbb >= 2019.0"] if platform.machine().lower().startswith("x86") else []),
"extras_require": {
"plot": [
"pandas",
Expand Down

0 comments on commit 91a914a

Please sign in to comment.