mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
Reason for revert: This CL over-aggressively removed the Windows bootstrap code used by /gclient.bat, which in turn downloads/installs the Windows toolchain, including Python. Labs can no longer provision Windows bots because of this. update_depot_tools.bat did more than initialize the virtualenv. It also downloaded and installed Python, Git, and Subversion on Windows systems. I'm reverting to restore the toolchain so we can create new Windows bots. Original issue's description: > Removed virtualenv from depot_tools > > This effectively reverts http://crrev.com/1195423002 and > http://crrev.com/1205873002. > > R=pgervais@chromium.org, tandrii@chromium.org > TBR=pgervais@chromium.org # i wanna get my Fixit credit today :-) > BUG=542922,503067 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=297491 TBR=pgervais@chromium.org,tandrii@chromium.org,sergiyb@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=542922,503067 Review URL: https://codereview.chromium.org/1431173002 . git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@297493 0039d316-1c4b-4281-b951-d872f2087c98
22 lines
746 B
ReStructuredText
22 lines
746 B
ReStructuredText
virtualenv
|
|
==========
|
|
|
|
See docs/index.rst for user documentation.
|
|
|
|
Contributor notes
|
|
-----------------
|
|
|
|
* virtualenv is designed to work on python 2 and 3 with a single code base.
|
|
Use Python 3 print-function syntax, and always ``use sys.exc_info()[1]``
|
|
inside the ``except`` block to get at exception objects.
|
|
|
|
* virtualenv uses git-flow_ to `coordinate development`_. The latest stable
|
|
version should exist on the *master* branch, and new work should be
|
|
integrated to *develop*.
|
|
|
|
* All changes to files inside virtualenv_embedded should be integrated to
|
|
``virtualenv.py`` with ``bin/rebuild-script.py``.
|
|
|
|
.. _git-flow: https://github.com/nvie/gitflow
|
|
.. _coordinate development: http://nvie.com/posts/a-successful-git-branching-model/
|