mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 23:30:18 +00:00
update 0.5
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from pythonbrew.basecommand import Command
|
||||
from pythonbrew.define import VERSION
|
||||
from pythonbrew.log import logger
|
||||
|
||||
class VersionCommand(Command):
|
||||
name = "version"
|
||||
usage = "%prog"
|
||||
summary = "Show version"
|
||||
|
||||
def run_command(self, options, args):
|
||||
logger.info(VERSION)
|
||||
|
||||
VersionCommand()
|
||||
Reference in New Issue
Block a user