This commit is contained in:
jeffj6123 2020-12-10 14:09:22 -08:00
Родитель a5b2e2c481
Коммит 94b5c05082
4 изменённых файлов: 11 добавлений и 4 удалений

Просмотреть файл

@ -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