mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
0.7 release
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
* 0.7
|
||||
- Added symlink command.
|
||||
- Added --as option.
|
||||
|
||||
* 0.6.9
|
||||
- Bug fixed.
|
||||
- Added config.cfg
|
||||
|
||||
@@ -53,7 +53,7 @@ Use the specified python in current shell::
|
||||
Runs a named python file against specified and/or all pythons::
|
||||
|
||||
pythonbrew py test.py
|
||||
pythonbrew py -v test.py # Show version
|
||||
pythonbrew py -v test.py # Show running python version
|
||||
pythonbrew py -p 2.6.6 -p 3.1.2 test.py # Use the specified pythons
|
||||
|
||||
List the installed pythons::
|
||||
@@ -79,6 +79,12 @@ Upgrades pythonbrew to the latest version::
|
||||
Disable pythonbrew::
|
||||
|
||||
pythonbrew off
|
||||
|
||||
Create/Remove a symbolic link to python::
|
||||
|
||||
pythonbrew symlink # Create a symbolic link, like "py2.5.5"
|
||||
pythonbrew symlink -p 2.5.5
|
||||
pythonbrew symlink -r # Remove a symbolic link
|
||||
|
||||
Show version::
|
||||
|
||||
@@ -94,9 +100,6 @@ install <version>
|
||||
|
||||
options: --force, --no-setuptools and --configure.
|
||||
|
||||
installed
|
||||
List the installed versions of python.
|
||||
|
||||
switch <version>
|
||||
Permanently use the specified python as default.
|
||||
|
||||
@@ -139,6 +142,9 @@ Options
|
||||
\-n | --no-setuptools
|
||||
Skip installation of setuptools.
|
||||
|
||||
\--as
|
||||
Install a python under an alias.
|
||||
|
||||
LICENCE
|
||||
=======
|
||||
|
||||
|
||||
+11
-5
@@ -52,7 +52,7 @@ Use the specified python in current shell::
|
||||
Runs a named python file against specified and/or all pythons::
|
||||
|
||||
pythonbrew py test.py
|
||||
pythonbrew py -v test.py # Show version
|
||||
pythonbrew py -v test.py # Show running python version
|
||||
pythonbrew py -p 2.6.6 -p 3.1.2 test.py # Use the specified pythons
|
||||
|
||||
List the installed pythons::
|
||||
@@ -78,6 +78,12 @@ Upgrades pythonbrew to the latest version::
|
||||
Disable pythonbrew::
|
||||
|
||||
pythonbrew off
|
||||
|
||||
Create/Remove a symbolic link to python::
|
||||
|
||||
pythonbrew symlink # Create a symbolic link, like "py2.5.5"
|
||||
pythonbrew symlink -p 2.5.5
|
||||
pythonbrew symlink -r # Remove a symbolic link
|
||||
|
||||
Show version::
|
||||
|
||||
@@ -91,10 +97,7 @@ install <version>
|
||||
|
||||
Setuptools and pip is automatically installed.
|
||||
|
||||
options: --force, --no-setuptools and --configure.
|
||||
|
||||
installed
|
||||
List the installed versions of python.
|
||||
options: --force, --no-setuptools, --configure and --as.
|
||||
|
||||
switch <version>
|
||||
Permanently use the specified python as default.
|
||||
@@ -138,6 +141,9 @@ Options
|
||||
\-n | --no-setuptools
|
||||
Skip installation of setuptools.
|
||||
|
||||
\--as
|
||||
Install a python under an alias.
|
||||
|
||||
LICENCE
|
||||
=======
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import os
|
||||
import re
|
||||
import ConfigParser
|
||||
|
||||
VERSION = "0.6.9"
|
||||
VERSION = "0.7"
|
||||
|
||||
if os.environ.has_key("PYTHONBREW_ROOT"):
|
||||
ROOT = os.environ["PYTHONBREW_ROOT"]
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
0.6.9
|
||||
0.7
|
||||
Reference in New Issue
Block a user