OLD | NEW |
| (Empty) |
1 virtualenv | |
2 ========== | |
3 | |
4 See docs/index.rst for user documentation. | |
5 | |
6 Contributor notes | |
7 ----------------- | |
8 | |
9 * virtualenv is designed to work on python 2 and 3 with a single code base. | |
10 Use Python 3 print-function syntax, and always ``use sys.exc_info()[1]`` | |
11 inside the ``except`` block to get at exception objects. | |
12 | |
13 * virtualenv uses git-flow_ to `coordinate development`_. The latest stable | |
14 version should exist on the *master* branch, and new work should be | |
15 integrated to *develop*. | |
16 | |
17 * All changes to files inside virtualenv_embedded should be integrated to | |
18 ``virtualenv.py`` with ``bin/rebuild-script.py``. | |
19 | |
20 .. _git-flow: https://github.com/nvie/gitflow | |
21 .. _coordinate development: http://nvie.com/posts/a-successful-git-branching-mod
el/ | |
OLD | NEW |