8000 Merge pull request #25254 from matoro/main · numpy/numpy@eba61c7 · GitHub
[go: up one dir, main page]

Skip to content

Commit eba61c7

Browse files
authored
Merge pull request #25254 from matoro/main
BUG: mips doesn't use REAL(10)
2 parents 904412e + 022e8ae commit eba61c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/f2py/crackfortran.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2466,7 +2466,7 @@ def _selected_real_kind_func(p, r=0, radix=0):
24662466
if p < 16:
24672467
return 8
24682468
machine = platform.machine().lower()
2469-
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
2469+
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'mips', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
24702470
if p <= 33:
24712471
return 16
24722472
else:

0 commit comments

Comments
 (0)
0