Skip to content

Commit

Permalink
Hotfix azdev==0.1.5 help command's bug (#138)
Browse files Browse the repository at this point in the history
* Explictly add package azdev.operations.help to setup.py

* Upgrade version: azdev==0.1.6

* Fix bug which go to wrong dir and omit the generated wheel file
  • Loading branch information
Jianhui Harold authored and Zim Kalinowski committed Nov 19, 2019
1 parent c55ab02 commit 15bfa11
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.1.6
++++++
* Fix bug: azdev==0.1.5 help commands' error

0.1.5
++++++
* `azdev extension add/remove`: Added ability to supply wildcard (*) to install all available dev extensions
Expand Down
2 changes: 1 addition & 1 deletion azdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------

__VERSION__ = '0.1.5'
__VERSION__ = '0.1.6'
7 changes: 4 additions & 3 deletions scripts/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
set -ev

: "${BUILD_STAGINGDIRECTORY:?BUILD_STAGINGDIRECTORY environment variable not set}"
: "${BUILD_SOURCESDIRECTORY:="$(dirname ${BASH_SOURCE[0]})/../../.."}"
: "${BUILD_SOURCESDIRECTORY:=$(cd $(dirname $0); cd ../../; pwd)}"

cd $BUILD_SOURCESDIRECTORY
cd "${BUILD_SOURCESDIRECTORY}"

echo "Build azdev"
pip install -U pip setuptools wheel
python setup.py bdist_wheel sdist -d $BUILD_STAGINGDIRECTORY
python setup.py bdist_wheel -d "${BUILD_STAGINGDIRECTORY}"
python setup.py sdist -d "${BUILD_STAGINGDIRECTORY}"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@
'azdev.config',
'azdev.operations',
'azdev.mod_templates',
'azdev.operations.help',
'azdev.operations.help.refdoc',
'azdev.operations.linter',
'azdev.operations.linter.rules',
'azdev.operations.tests',
Expand Down

0 comments on commit 15bfa11

Please sign in to comment.