Pypi says there is a new version on their website.
pip search
tells me I have an old version and there is a new one.
(Canopy 64bit) Johns-iMac:~ john$ pip search deap
deap - Distributed Evolutionary Algorithms in Python
INSTALLED: 1.0.1
LATEST: 1.0.2
But pip install -U
with all the overrides says there is no new version.
(Canopy 64bit) Johns-iMac:~ john$ pip install -U --allow-unverified --allow-external deap==1.0.2
Collecting deap==1.0.2
Could not find a version that satisfies the requirement deap==1.0.2 (from versions: 0.9.1, 0.9.2, 1.0.0rc3, 1.0.0, 1.0.1)
No distributions matching the version for deap==1.0.2
What silly detail am I overlooking?