Hi, first of all thank you so much for your work.
Correct me if I'm wrong, but it seems like the last py39 build has been compiled in 32-bit mode; this is what I get on an AIX 5300-11-01-0944 machine:
>python3
Python 3.9.1 (tags/v3.9.1-dirty:1e5d33e9b9, Jan 4 2021, 13:53:54) [C] on aix
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.maxsize
2147483647
>>> sys.maxsize == 2**31-1
True
>>> import platform
>>> platform.architecture()
('32bit', '')
I figured this out when trying to compile the cx_Oracle module in 64-bit mode (CFLAGS="-q64" python3 setup.py build) and getting the error:
"/opt/include/python3.9/pyport.h", line 741.2: 1506-205 (S) #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
Do you think you'll be able to build a 64-bit package anytime soon?