diff --git a/pipenv/core.py b/pipenv/core.py index 3aac25c4..42ccd564 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -10,7 +10,7 @@ import pexpect import toml import _pipfile as pipfile -__version__ = '0.1.1' +__version__ = '0.1.2' class Project(object): """docstring for Project""" @@ -328,7 +328,6 @@ def cli(*args, **kwargs): @click.option('--dev', '-d', is_flag=True, default=False) def init(dev=False): - print project.pipfile_location # Assert Pipfile exists. if not project.pipfile_exists: diff --git a/setup.py b/setup.py index 91f82712..0e93d077 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ required = [ setup( name='pipenv', - version='0.1.1', + version='0.1.2', description='Sacred Marriage of Pipfile, Pip, & Virtualenv.', long_description=long_description, author='Kenneth Reitz',