Skip to content

Commit 3c4e293

Browse files
author
Elliot Boschwitz
authored
Adds sdist to list of downloads (#392)
1 parent 3d02b1d commit 3c4e293

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

release.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,18 @@ def download_official_wheels():
7575
utility.clean_up(utility.MSSQLCLI_DIST_DIRECTORY)
7676
os.mkdir(utility.MSSQLCLI_DIST_DIRECTORY)
7777

78-
print('Downloading official wheels with version: {}'.format(latest_version))
78+
print('Downloading official wheels and sdist with version: {}'.format(latest_version))
7979
blob_names = [
8080
'mssql_cli-{}-py2.py3-none-macosx_10_11_intel.whl'.format(latest_version),
8181
'mssql_cli-{}-py2.py3-none-manylinux1_x86_64.whl'.format(latest_version),
8282
'mssql_cli-{}-py2.py3-none-win_amd64.whl'.format(latest_version),
83-
'mssql_cli-{}-py2.py3-none-win32.whl'.format(latest_version)
83+
'mssql_cli-{}-py2.py3-none-win32.whl'.format(latest_version),
84+
'mssql_cli-{}.tar.gz'.format(latest_version)
8485
]
8586

8687
blob_service = BlockBlobService(connection_string=AZURE_STORAGE_CONNECTION_STRING)
8788
for blob in blob_names:
88-
print('Downloading wheel:{}'.format(blob))
89+
print('Downloading file:{}'.format(blob))
8990

9091
if not blob_service.exists(BLOB_MSSQL_CLI_DAILY_CONTAINER_NAME, blob):
9192
print('Error: blob: {} does not exist in container: {}'\

0 commit comments

Comments
 (0)