We are trying to use an internal PyPi server so we can be fully self-contained and not have to go through our proxy to connect to the global server. However, we've found that mysql-python 1.2.4 has a hardcoded distribute version and URL to the global PyPi server in distribute_setup.py. This is forcing us to continue to use our proxies to be able to connect to the global server to pull in distribute 0.6.28 when we install 1.2.4 from our local PyPi server.
From MySQL-python-1.2.4/distribute_setup.py, lines 49 and 50:
DEFAULT_VERSION = "0.6.28"
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
I don't see this requirement in 1.2.3.
What gives?
From MySQL-python-1.2.4/distribute_setup.py, lines 49 and 50:
DEFAULT_VERSION = "0.6.28"
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
I don't see this requirement in 1.2.3.
What gives?