This commit is contained in:
utahta
2011-07-22 18:38:20 +09:00
parent 9fbc3273cf
commit 07828a266d
4 changed files with 11 additions and 7 deletions
+4
View File
@@ -1,3 +1,7 @@
* 0.9
- Added `buildout` command.
- Added `venv` command.
* 0.8
- Fixed issue #21 Added Ubuntu 11.04(Natty) support
- Fixed issue #24 non-framework python27 now defines environ properly. Thanks npinto.
+3 -3
View File
@@ -95,10 +95,10 @@ Runs the buildout with specified or current using python::
Create isolated python environments::
pythonbrew venv create proj1
pythonbrew venv create proj
pythonbrew venv list
pythonbrew venv use proj1
pythonbrew venv delete proj1
pythonbrew venv use proj
pythonbrew venv delete proj
Show version::
+3 -3
View File
@@ -95,10 +95,10 @@ Runs the buildout with specified or current using python::
Create isolated python environments::
pythonbrew venv create proj1
pythonbrew venv create proj
pythonbrew venv list
pythonbrew venv use proj1
pythonbrew venv delete proj1
pythonbrew venv use proj
pythonbrew venv delete proj
Show version::
+1 -1
View File
@@ -6,7 +6,7 @@ except:
import configparser as ConfigParser
# pythonbrew version
VERSION = "0.8"
VERSION = "0.9"
# pythonbrew root path
ROOT = os.environ.get("PYTHONBREW_ROOT")