Merge pull request #126561 from zhaofengli/tqdm-no-pandas

tqdm: Disable pandas on RISC-V
This commit is contained in:
Jörg Thalheim 2021-06-11 09:00:11 +02:00 committed by GitHub
commit 83a1d3dabb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,8 +34,8 @@ buildPythonPackage rec {
rich
tkinter
] ++
# pandas is not supported on i686
lib.optional (!stdenv.isi686) pandas;
# pandas is not supported on i686 or risc-v
lib.optional (!stdenv.isi686 && !stdenv.hostPlatform.isRiscV) pandas;
# Remove performance testing.
# Too sensitive for on Hydra.