
On Wed, Mar 24, 2010 at 7:23 AM, anatoly techtonik <techtonik@gmail.com> wrote:
Sure. Package management tool should have an ability to update itself when required regardless of Python release. For example::
python.exe -m easy_install setuptools
This should be:
python -m easy_install -U setuptools
JFTR More precisely, what I use for CI is {{{ #!sh $ easy_install -U setuptools==dev }}} but the `python -m` part should work as well ;o) PS: e.g. that allows to check out code from SVN in order to use setuptools 0.7.x `test_runner` switch like this {{{ python -W ignore::DeprecationWarning setup.py test -r ciutils:junitrunner }}} ;o) -- Regards, Olemis. Blog ES: http://simelo-es.blogspot.com/ Blog EN: http://simelo-en.blogspot.com/ Featured article: TracRpc: API v2: Test cases for XML-RPC ... PASS - http://bitbucket.org/osimons/trac-rpc-mq/changeset/228ef43726b0/