Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Python cache
__pycache__/
*.pyc
.ipynb_checkpoints/

# Virtual environment
env*/
Expand Down Expand Up @@ -67,4 +68,4 @@ src/build
*.pubxml

# [begoldsm] ignore virtual env if it exists.
adlEnv/
adlEnv/
4 changes: 2 additions & 2 deletions libraries/botbuilder-adapters-slack/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp==3.7.4
aiohttp==3.8.4
pyslack
botbuilder-core==4.15.0
slackclient
slackclient
2 changes: 1 addition & 1 deletion libraries/botbuilder-ai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"azure-cognitiveservices-language-luis==0.2.0",
"botbuilder-schema==4.15.0",
"botbuilder-core==4.15.0",
"aiohttp>=3.6.2,<3.8.0",
"aiohttp==3.8.4",
]

TESTS_REQUIRES = ["aiounittest>=1.1.0"]
Expand Down
4 changes: 2 additions & 2 deletions libraries/botbuilder-applicationinsights/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
]
TESTS_REQUIRES = [
"aiounittest==1.3.0",
"django==3.2.16", # For samples
"django==3.2.17", # For samples
"djangorestframework==3.10.3", # For samples
"flask==1.1.1", # For samples
"flask==2.2.5", # For samples
]

root = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion libraries/botbuilder-core/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ botbuilder-schema==4.15.0
botframework-streaming==4.15.0
requests==2.27.1
PyJWT==2.4.0
cryptography==3.3.2
cryptography==39.0.1
aiounittest==1.3.0
2 changes: 1 addition & 1 deletion libraries/botbuilder-dialogs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ botbuilder-schema==4.15.0
botbuilder-core==4.15.0
requests==2.27.1
PyJWT==2.4.0
cryptography==3.3.2
cryptography==39.0.1
aiounittest==1.3.0
2 changes: 1 addition & 1 deletion libraries/botbuilder-integration-aiohttp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
msrest==0.6.*
botframework-connector==4.15.0
botbuilder-schema==4.15.0
aiohttp==3.8.3
aiohttp==3.8.4
2 changes: 1 addition & 1 deletion libraries/botbuilder-integration-aiohttp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"botframework-connector==4.15.0",
"botbuilder-core==4.15.0",
"yarl<=1.4.2",
"aiohttp>=3.6.2,<3.8.0",
"aiohttp==3.8.4",
]

root = os.path.abspath(os.path.dirname(__file__))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

REQUIRES = [
"applicationinsights>=0.11.9",
"aiohttp>=3.6.2,<3.8.0",
"aiohttp==3.8.4",
"botbuilder-schema==4.15.0",
"botframework-connector==4.15.0",
"botbuilder-core==4.15.0",
Expand Down
3 changes: 2 additions & 1 deletion libraries/botbuilder-schema/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

NAME = "botbuilder-schema"
VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.15.0"
REQUIRES = ["msrest==0.6.*"]
REQUIRES = ["msrest==0.6.*",
"urllib3<2.0.0"]

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

Expand Down
2 changes: 1 addition & 1 deletion libraries/botframework-connector/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ msrest==0.6.*
botbuilder-schema==4.15.0
requests==2.27.1
PyJWT==2.4.0
cryptography==3.3.2
cryptography==39.0.1
msal==1.*