Skip to content
This repository has been archived by the owner on Feb 19, 2019. It is now read-only.

Commit

Permalink
Use explict wheelhouse directory
Browse files Browse the repository at this point in the history
  • Loading branch information
56quarters committed Aug 25, 2016
1 parent 747e0b4 commit 94e388d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fabfile/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
def build_released():
"""Build a wheel from a released version on PyPI."""
with hide('stdout'):
local("pip wheel --requirement requirements-prod.txt")
local("pip wheel avalonms")
local("pip wheel -w wheelhouse --requirement requirements-prod.txt")
local("pip wheel -w wheelhouse avalonms")


@task(name='local')
def build_local():
"""Build a wheel from the local checkout."""
with hide('stdout'):
local(
"pip wheel "
"pip wheel -w wheelhouse "
"--requirement requirements.txt "
"--requirement requirements-prod.txt")
local("pip wheel --no-deps .")
local("pip wheel -w wheelhouse --no-deps .")

0 comments on commit 94e388d

Please sign in to comment.