easy_install --upgrade-all ?
is there a possibility to upgrade all installed eggs with easy_install resp setuptools?
In article <4c2f1fd6-efc2-4947-9ac1-1cfa7f28d762@r16g2000vbp.googlegroups.com>, "rupert.thurner" <rupert.thurner@gmail.com> wrote:
is there a possibility to upgrade all installed eggs with easy_install resp setuptools?
yolk -U queries PyPI and reports which installed packages are out-of-date. <http://pypi.python.org/pypi/yolk> A little bit of hackery could turn the output into easy_install commands, maybe something like: yolk -U | cut -d ' ' -f 2 | xargs easy_install -- Ned Deily, nad@visi.com -- []
In an automated build environment I need to be able to make eggs which depend on non-released "testing" eggs. These are all published to a web-server operated by my team. I know that it's possible to globally change the default URLs of the "--find-links" easy_install option by editing the distutils.cfg file, however I want a fully automated process which will validate a system's configuration and determine if the test-egg URL have been added to the system. If not, I want my build process to fail with an explicit error emssage. Other than by directly inspecting and parsing this file, is there a programatic way to find which hosts have been configured in the distutils.cfg file? Ideally I'd like to access this information via pkg_resources. Any suggestions? Thanks This email does not create a legal relationship between any member of the Crédit Agricole group and the recipient or constitute investment advice. The content of this email should not be copied or disclosed (in whole or part) to any other person. It may contain information which is confidential, privileged or otherwise protected from disclosure. If you are not the intended recipient, you should notify us and delete it from your system. Emails may be monitored, are not secure and may be amended, destroyed or contain viruses and in communicating with us such conditions are accepted. Any content which does not relate to business matters is not endorsed by us. Calyon is authorised by the Comité des Etablissements de Crédit et des Entreprises d'Investissement (CECEI) and supervised by the Commission Bancaire in France and subject to limited regulation by the Financial Services Authority. Details about the extent of our regulation by the Financial Services Authority are available from us on request. Calyon is incorporated in France with limited liability and registered in England & Wales. Registration number: FC008194. Registered office: Broadwalk House, 5 Appold Street, London, EC2A 2DA.
participants (3)
-
Fadhley Salim
-
Ned Deily
-
rupert.thurner