diff options
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2323fa10d9..a19987e487 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10050,10 +10050,14 @@ writing C extensions for Python as easy as Python itself.") (when tests? (apply invoke "python" "runtests.py" test-flags))))))) (native-inputs - (list gcc-13 ;does not compile with gcc-14 - libxcrypt - python-setuptools - python-wheel)) + ;; does not compile with gcc-14 + (list + (cond + ((target-x86-32?) gcc-11) + (else gcc-13)) + libxcrypt + python-setuptools + python-wheel)) (properties '()))) ;; NOTE: when upgrading numpy please make sure that python-numba, |
