diff --git a/Pipfile b/Pipfile index d6b66b88..af6227df 100644 --- a/Pipfile +++ b/Pipfile @@ -10,7 +10,7 @@ pytest-xdist = "*" click = "*" "bf8d106" = {path = "./tests/pytest-pypi", editable = true} pytest-tap = "*" -stdeb = "*" +stdeb = {version="*", platform_name="linux"} [packages] diff --git a/Pipfile.lock b/Pipfile.lock index a8a0f68d..fccb33bf 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "d77bda72dcf016b2bf8876f39f41360732ceeff7710232b8df91e4f23b548b1d" + "sha256": "71b79eaaa732552d1206e8479901d081086a1bfc8f5fe935a6ffc3b382edfc49" }, "pipfile-spec": 6, "requires": {}, diff --git a/pipenv/__version__.py b/pipenv/__version__.py index ae795b52..5816196c 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -4,4 +4,4 @@ # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = '11.0.6' +__version__ = '11.0.7' diff --git a/setup.py b/setup.py index c414ac26..d7001d24 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ class DebCommand(Command): except FileNotFoundError: pass self.status(u'Creating debian mainfest…') - os.system('python setup.py --command-packages=stdeb.command sdist_dsc -z artful --package pipenv --depends3=python3-pew') + os.system('python setup.py --command-packages=stdeb.command sdist_dsc -z artful --package3=pipenv --depends3=python3-pew') self.status(u'Building .deb…') os.chdir('deb_dist/pipenv-{0}'.format(about['__version__']))