I have legacy windows numpy code with a lot of nd.array intgers without explicit dtype. In windows they are treated as np.int32. Moving to linux, they become np.int64 which cause a lot of types problems.
Instead of adding explicit dtype on many places in the code,
Can I somehow force numpy on linux 64 to treat integers as np.int32 and not np.int64. For example: np.array(1) will become np.int32.
I saw it's been asked in 1, ~two years ago and wondering if maybe something had changed since then.