I am running an old RHEL5 server and would like to install a beta version of the python module openrem
from pip.
I create a virtual env in my folder and issue the command
pip install openrem==0.7.0b13
The setup.py
for openrem 0.7.0b13 has the following requirements
requires = [
'django>=1.8,<1.9',
'django-filter >= 0.10',
'pytz >= 0a',
'humanize',
'pydicom >= 0.9.9',
'django-pagination',
'xlsxwriter',
'celery >= 3.1',
'argparse >= 1.2.1',
'django-qsstats-magic',
'python-dateutil',
'django-solo',
'django-crispy-forms'
]
However, I get the following message during the installation
Downloading/unpacking django>=1.8,<1.9 (from openrem==0.7.0b13)
Downloading Django-1.9rc1.tar.gz (7.3MB): 7.3MB downloaded
Running setup.py egg_info for package django
Low and behold django 1.9 is installed. The problem being openrem
is incompatible with django 1.9
. Why is pip ignoring the requirement to install django <1.9