Skip to content

Commit 4d63f57

Browse files
committed
updated python deps for db_init
1 parent dfb336f commit 4d63f57

File tree

2 files changed

+53
-22
lines changed

2 files changed

+53
-22
lines changed

db_init/__main__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
cluster_url = sys.argv[1]
3232
db_name = sys.argv[2]
3333

34-
logging.info('Cluster:', cluster_url)
35-
logging.info('Database:', db_name)
34+
logging.info('Cluster: %s', cluster_url)
35+
logging.info('Database: %s', db_name)
3636

3737
logging.info('Creating connection string.')
3838
kcsb = KustoConnectionStringBuilder.with_aad_managed_service_identity_authentication(cluster_url)

db_init/requirements.txt

+51-20
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,55 @@
22
# This file is autogenerated by pip-compile
33
# To update, run:
44
#
5-
# pip-compile
5+
# pip-compile requirements.in
66
#
7-
adal==1.2.4 # via azure-kusto-data, msrestazure
8-
azure-kusto-data==0.1.0 # via -r requirements.in
9-
certifi==2020.6.20 # via msrest, requests
10-
cffi==1.14.0 # via cryptography
11-
chardet==3.0.4 # via requests
12-
cryptography==2.9.2 # via adal
13-
idna==2.10 # via requests
14-
isodate==0.6.0 # via msrest
15-
msrest==0.6.17 # via msrestazure
16-
msrestazure==0.6.4 # via azure-kusto-data
17-
oauthlib==3.1.0 # via requests-oauthlib
18-
pycparser==2.20 # via cffi
19-
pyjwt==1.7.1 # via adal
20-
python-dateutil==2.8.1 # via adal, azure-kusto-data
21-
requests-oauthlib==1.3.0 # via msrest
22-
requests==2.24.0 # via adal, azure-kusto-data, msrest, requests-oauthlib
23-
six==1.15.0 # via cryptography, isodate, msrestazure, python-dateutil, tenacity
24-
tenacity==6.2.0 # via -r requirements.in
25-
urllib3==1.25.9 # via requests
7+
azure-core==1.10.0
8+
# via azure-identity
9+
azure-identity==1.5.0
10+
# via azure-kusto-data
11+
azure-kusto-data==2.0.0
12+
# via -r requirements.in
13+
certifi==2020.12.5
14+
# via requests
15+
cffi==1.14.4
16+
# via cryptography
17+
chardet==4.0.0
18+
# via requests
19+
cryptography==3.3.1
20+
# via
21+
# azure-identity
22+
# msal
23+
# pyjwt
24+
idna==2.10
25+
# via requests
26+
msal-extensions==0.3.0
27+
# via azure-identity
28+
msal==1.8.0
29+
# via
30+
# azure-identity
31+
# azure-kusto-data
32+
# msal-extensions
33+
portalocker==1.7.1
34+
# via msal-extensions
35+
pycparser==2.20
36+
# via cffi
37+
pyjwt[crypto]==1.7.1
38+
# via msal
39+
python-dateutil==2.8.1
40+
# via azure-kusto-data
41+
requests==2.25.1
42+
# via
43+
# azure-core
44+
# azure-kusto-data
45+
# msal
46+
six==1.15.0
47+
# via
48+
# azure-core
49+
# azure-identity
50+
# cryptography
51+
# python-dateutil
52+
# tenacity
53+
tenacity==6.3.1
54+
# via -r requirements.in
55+
urllib3==1.26.3
56+
# via requests

0 commit comments

Comments
 (0)