This commit is contained in:
2017-01-22 13:09:55 -05:00
parent 1c6a820329
commit 4db4e712e4
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -14,7 +14,7 @@ from . import _pipfile as pipfile
from .project import Project
from .utils import convert_deps_from_pip, convert_deps_to_pip
__version__ = '0.1.12'
__version__ = '0.1.13'
project = Project()
@@ -375,8 +375,7 @@ def shell():
))
@click.argument('command')
@click.argument('args', nargs=-1)
@click.pass_context
def run(ctx, command, args):
def run(command, args):
# Ensure that virtualenv is available.
ensure_project()
+1 -1
View File
@@ -35,7 +35,7 @@ required = [
setup(
name='pipenv',
version='0.1.12',
version='0.1.13',
description='Sacred Marriage of Pipfile, Pip, & Virtualenv.',
long_description=long_description,
author='Kenneth Reitz',