Skip to content

Commit 672db79

Browse files
authored
Merge pull request microsoft#127 from Microsoft/users/tedchamb/dev
Fix for msrest 0.6.0 breaking change
2 parents 88d70e2 + bab0915 commit 672db79

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vsts/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup, find_packages
77

88
NAME = "vsts"
9-
VERSION = "0.1.17"
9+
VERSION = "0.1.18"
1010

1111
# To install the library, run the following
1212
#
@@ -16,7 +16,7 @@
1616
# http://pypi.python.org/pypi/setuptools
1717

1818
REQUIRES = [
19-
"msrest>=0.5.0"
19+
"msrest>=0.5.0,<0.6.0"
2020
]
2121

2222
CLASSIFIERS = [

vsts/vsts/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55

6-
VERSION = "0.1.17"
6+
VERSION = "0.1.18"

0 commit comments

Comments
 (0)