diff --git a/pipenv/cli.py b/pipenv/cli.py index 9744ce77..075299b5 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.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() diff --git a/setup.py b/setup.py index 9b9992c3..ced24903 100644 --- a/setup.py +++ b/setup.py @@ -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',