Now, at April 2013, Django version 1.0.4 cannot be installed by following pip-command:
$ pip install Django==1.0.4
Downloading/unpacking Django==1.0.4
Could not find a version that satisfies the requirement Django==1.0.4 (from versions: )
No distributions matching the version for Django==1.0.4
Storing complete log in /Users/numa/.pip/pip.log
Instead, using following pip-command, Django version 1.0.4 is able to be installed by pip:
$ pip install git+https://github.com/django/django.git@1.0.4
Downloading/unpacking git+https://github.com/django/django.git@1.0.4
Cloning https://github.com/django/django.git (to 1.0.4) to /var/folders/94/01qb12xs6fngbj7jfgjsx7pm0000gn/T/pip-YIdXLo-build
Running setup.py egg_info for package from git+https://github.com/django/django.git@1.0.4
Installing collected packages: Django
Running setup.py install for Django
changing mode of build/scripts-2.7/django-admin.py from 644 to 755
changing mode of /Users/numa/Dropbox/dotfiles/.virtualenvs/review/bin/django-admin.py to 755
Successfully installed Django
Cleaning up...
$ pip freeze
Django==1.0.4