Skip to content

Commit

Permalink
Explicitly package in the release command
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljoseph committed Oct 12, 2014
1 parent 48fada0 commit 94598bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion changes/flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from plumbum import local, CommandNotFound

from changes.changelog import generate_changelog
from changes.packaging import install_package, upload_package, install_from_pypi
from changes.packaging import build_package, install_package, upload_package, install_from_pypi
from changes.vcs import tag_and_push, commit_version_change
from changes.verification import run_tests
from changes.version import increment_version
Expand All @@ -20,6 +20,7 @@ def perform_release(context):
generate_changelog(context)
increment_version(context)

build_package(context)
install_package(context)
upload_package(context)
install_from_pypi(context)
Expand Down

0 comments on commit 94598bf

Please sign in to comment.