adding 10.1 specific changes
This commit is contained in:
Родитель
a5b2e2c481
Коммит
94b5c05082
|
@ -24,6 +24,11 @@ Unreleased
|
|||
----------
|
||||
- Update imports for Service fabric runtime version 7.2 (#225)
|
||||
|
||||
10.1.0
|
||||
----------
|
||||
(back port of 11.0.0 for Linux 7.2)
|
||||
|
||||
|
||||
10.0.0
|
||||
----------
|
||||
- Update imports for Service fabric runtime version 7.1 (#218)
|
||||
|
|
|
@ -17,7 +17,7 @@ def read(fname):
|
|||
|
||||
setup(
|
||||
name='sfctl',
|
||||
version='11.0.0',
|
||||
version='10.1.0',
|
||||
description='Azure Service Fabric command line',
|
||||
long_description=read('README.rst'),
|
||||
url='https://github.com/Azure/service-fabric-cli',
|
||||
|
@ -54,7 +54,9 @@ setup(
|
|||
'sfmergeutility==0.1.6',
|
||||
'psutil',
|
||||
'portalocker',
|
||||
'six'
|
||||
'six',
|
||||
'joblib',
|
||||
'tqdm'
|
||||
],
|
||||
extras_require={
|
||||
'test': [
|
||||
|
|
|
@ -272,7 +272,7 @@ def sfctl_cluster_version_matches(cluster_version, sfctl_version):
|
|||
:return: True if they are a match. False otherwise.
|
||||
"""
|
||||
|
||||
if sfctl_version in ['11.0.0']:
|
||||
if sfctl_version in ['10.1.0']:
|
||||
|
||||
return cluster_version.startswith('7.2')
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ class VersionTests(unittest.TestCase):
|
|||
|
||||
note: this will require changing the sfctl_version on releases
|
||||
"""
|
||||
sfctl_version = '11.0.0'
|
||||
sfctl_version = '10.1.0'
|
||||
|
||||
pipe = Popen('sfctl --version', shell=True, stdout=PIPE, stderr=PIPE)
|
||||
# returned_string and err are returned as bytes
|
||||
|
|
Загрузка…
Ссылка в новой задаче