From 48b46a6e5b05a76069ed976de3cc2db06131165c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Jan 2017 00:16:33 -0500 Subject: [PATCH] v0.1.12 --- pipenv/cli.py | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 10871b7a..5ae97360 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -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.11' +__version__ = '0.1.12' project = Project() @@ -372,12 +372,12 @@ def shell(): @click.command(help="Spans a command installed into the virtualenv.") @click.argument('command') @click.argument('args', nargs=-1) -def run(command): +def run(command, args): # Ensure that virtualenv is available. ensure_project() # Spawn the new process, and iteract with it. - c = pexpect.spawn('{0} {1}'.format(which(command), ' '.join(args)) + c = pexpect.spawn('{0} {1}'.format(which(command), ' '.join(args))) # Interact with the new shell. c.interact() diff --git a/setup.py b/setup.py index 08c04f16..9b9992c3 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ required = [ setup( name='pipenv', - version='0.1.11', + version='0.1.12', description='Sacred Marriage of Pipfile, Pip, & Virtualenv.', long_description=long_description, author='Kenneth Reitz',