@Mark: I'm a little bit confused since I don't think you can set the SDK version used by the app in production. Rather, it is always auto-upgraded to the latest.
It seems that the Python build used by Google uses an old(er) version of the GMP library. See this Ansible issue for more details:
https://github.com/ansible/ansible/issues/6941#issuecomment-89255641There is also a suggestion on how to mute the warnings temporarily:
```
from Crypto.pct_warnings import PowmInsecureWarning
import warnings
warnings.simplefilter("ignore", PowmInsecureWarning)
```
Happy Holidays!
Attila