Skip to content

Commit

Permalink
Upgrade setuptools if already present (#290)
Browse files Browse the repository at this point in the history
* Force setuptools to upgrade to latest version if already present

* Update version to rc1
  • Loading branch information
marianan authored Oct 21, 2020
1 parent 3be92b3 commit a866b04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion iotedgehubdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
pkg_resources.declare_namespace(__name__)

__author__ = 'Microsoft Corporation'
__version__ = '0.14.3rc0'
__version__ = '0.14.3rc1'
__AIkey__ = '95b20d64-f54f-4de3-8ad5-165a75a6c6fe'
__production__ = 'iotedgehubdev'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from setuptools import find_packages, setup

VERSION = '0.14.3rc0'
VERSION = '0.14.3rc1'
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down
4 changes: 2 additions & 2 deletions vsts_ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
displayName: "Replace AI Key for PROD"
- script: |
pip install setuptools
pip install wheel
pip install --upgrade setuptools
pip install --upgrade wheel
pushd $(BUILD.REPOSITORY.LOCALPATH)
python setup.py bdist_wheel
popd
Expand Down

0 comments on commit a866b04

Please sign in to comment.