release 0.8

This commit is contained in:
utahta
2011-07-11 00:22:48 +09:00
parent 7371bde921
commit cfdd193ffe
26 changed files with 743 additions and 252 deletions
+3 -2
View File
@@ -1,5 +1,6 @@
class UpdateOptions(object):
head = False
master = False
develop = False
config = False
force = False
@@ -7,4 +8,4 @@ def test_update():
from pythonbrew.commands.update import UpdateCommand
c = UpdateCommand()
c.run_command(UpdateOptions(), None)
+2
View File
@@ -2,6 +2,8 @@ from tests import TESTPY_VERSION
class InstallOptions(object):
force = True
no_test = True
verbose = False
configure = ""
no_setuptools = False
alias = None
-4
View File
@@ -1,4 +0,0 @@
def test_clean():
from pythonbrew.commands.clean import CleanCommand
c = CleanCommand()
c.run_command(None, None)
+4
View File
@@ -0,0 +1,4 @@
def test_clean():
from pythonbrew.commands.cleanup import CleanupCommand
c = CleanupCommand()
c.run_command(None, None)