On a production server, I am forced to use python3.2. Sadly several of my dependencies require >=python3.4
.
Is there a way to find out what the latest version of a package is that can be used with a specific python version?
For instance, with python3.2
, what version of numpy
should be used?
(This is only an example, answers would ideally not focus on the example, but on the actual question).