8000 updating dependencies (#1561) · yosshy/botbuilder-python@9f85a6f · GitHub
[go: up one dir, main page]

Skip to content

Commit 9f85a6f

Browse files
updating dependencies (microsoft#1561)
* updating dependencies * adding integration aiohttp * compatibility check * Removed unused adal dependency and update MSAL version Co-authored-by: tracyboehrer <tracyboehrer@users.noreply.github.com>
1 parent 3afe849 commit 9f85a6f

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

libraries/botbuilder-ai/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"azure-cognitiveservices-language-luis==0.2.0",
99
"botbuilder-schema==4.13.0",
1010
"botbuilder-core==4.13.0",
11-
"aiohttp==3.6.2",
11+
"aiohttp>=3.6.2,<3.8.0",
1212
]
1313

1414
TESTS_REQUIRES = ["aiounittest>=1.1.0"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aioresponses==0.6.3
1+
aioresponses~=0.6.3

libraries/botbuilder-azure/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"azure-storage-blob==12.7.0",
1010
"botbuilder-schema==4.13.0",
1111
"botframework-connector==4.13.0",
12-
"jsonpickle==1.2",
12+
"jsonpickle>=1.2,<1.5",
1313
]
1414
TEST_REQUIRES = ["aiounittest==1.3.0"]
1515

libraries/botbuilder-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
REQUIRES = [
99
"botbuilder-schema==4.13.0",
1010
"botframework-connector==4.13.0",
11-
"jsonpickle==1.2",
11+
"jsonpickle>=1.2,<1.5",
1212
]
1313

1414
root = os.path.abspath(os.path.dirname(__file__))

libraries/botbuilder-integration-aiohttp/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"botframework-connector==4.13.0",
1111
"botbuilder-core==4.13.0",
1212
"yarl<=1.4.2",
13-
"aiohttp==3.6.2",
13+
"aiohttp~=3.6.2",
1414
]
1515

1616
root = os.path.abspath(os.path.dirname(__file__))

libraries/botbuilder-integration-applicationinsights-aiohttp/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
REQUIRES = [
88
"applicationinsights>=0.11.9",
9-
"aiohttp==3.6.2",
9+
"aiohttp>=3.6.2,<3.8.0",
1010
"botbuilder-schema==4.13.0",
1111
"botframework-connector==4.13.0",
1212
"botbuilder-core==4.13.0",

libraries/botframework-connector/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ botbuilder-schema==4.13.0
33
requests==2.23.0
44
PyJWT==1.5.3
55
cryptography==3.3.2
6-
msal==1.2.0
6+
msal==1.6.0

libraries/botframework-connector/setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@
88
VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.13.0"
99
REQUIRES = [
1010
"msrest==0.6.10",
11-
"requests==2.23.0",
12-
"cryptography==3.3.2",
13-
"PyJWT==1.5.3",
11+
"requests>=2.23.0,<2.26",
12+
"PyJWT>=1.5.3,<2.0.0",
1413
"botbuilder-schema==4.13.0",
15-
"adal==1.2.1",
1614
"msal==1.6.0",
1715
]
1816

0 commit comments

Comments
 (0)
0