Where is latest python 3.3 bindary build for windows platform?

Question:

You maybe ask why do I use python 3.3 any way.
Because, I am running postgresql on windows. The plpython module shipped with pgsql 9.6 is linked to python33.dll

According to https://www.python.org/dev/peps/pep-0398/#id7
There is only source release.
Why do python only release source tar ball ? Wouldn’t it make windows platform less secure ?
Is there any other trusted source where people can get the latest 3.3.7 x86 binary installer ?

Thanks.

Asked By: Ben

||

Answers:

The last binary release was 3.3.5.

https://www.python.org/downloads/release/python-335/

Answered By: Mark Tolonen

The Python downloads page has installers for any version you care to name, usually including Windows binary installers. PEPs aren’t the place to look for them.

It looks like 3.3.6 was only done as a source release (it’s possible they’d moved support on to 3.4 and later by that point), so 3.3.5 is the last one with precompiled official binaries. Not sure what happened to 3.3.7; the PEP may be incorrect and the 3.3.7 release was scrubbed.

Answered By: ShadowRanger