8000 Fixes AttributeError: module 'urllib3.connectionpool' has no attribut… · sysang/botbuilder-python@80b3572 · GitHub
[go: up one dir, main page]

Skip to content

Commit 80b3572

Browse files
Fixes AttributeError: module 'urllib3.connectionpool' has no attribute 'VerifiedHTTPSConnection' (microsoft#1994)
* Update requirements. 8000 txt * Update requirements.txt * Update setup.py * Update setup.py * Update requirements.txt * Update setup.py * Update setup.py * Fixing security dependencies with cryptography, django and flask packages * edit gitignore * remove unnecesary files --------- Co-authored-by: tracyboehrer <tracyboehrer@users.noreply.github.com>
1 parent 26ee2bf commit 80b3572

File tree

11 files changed

+15
-13
lines changed

11 files changed

+15
-13
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Python cache
22
__pycache__/
33
*.pyc
4+
.ipynb_checkpoints/
45

56
# Virtual environment
67
env*/
@@ -67,4 +68,4 @@ src/build
6768
*.pubxml
6869

6970
# [begoldsm] ignore virtual env if it exists.
70-
adlEnv/
71+
adlEnv/
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp==3.7.4
1+
aiohttp==3.8.4
22
pyslack
33
botbuilder-core==4.15.0
4-
slackclient
4+
slackclient

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.15.0",
1010
"botbuilder-core==4.15.0",
11-
"aiohttp>=3.6.2,<3.8.0",
11+
"aiohttp==3.8.4",
1212
]
1313

1414
TESTS_REQUIRES = ["aiounittest>=1.1.0"]

libraries/botbuilder-applicationinsights/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
]
1313
TESTS_REQUIRES = [
1414
"aiounittest==1.3.0",
15-
"django==3.2.16", # For samples
15+
"django==3.2.17", # For samples
1616
"djangorestframework==3.10.3", # For samples
17-
"flask==1.1.1", # For samples
17+
"flask==2.2.5", # For samples
1818
]
1919

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

libraries/botbuilder-core/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ botbuilder-schema==4.15.0
44
botframework-streaming==4.15.0
55
requests==2.27.1
66
PyJWT==2.4.0
7-
cryptography==3.3.2
7+
cryptography==39.0.1
88
aiounittest==1.3.0

libraries/botbuilder-dialogs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ botbuilder-schema==4.15.0
44
botbuilder-core==4.15.0
55
requests==2.27.1
66
PyJWT==2.4.0
7-
cryptography==3.3.2
7+
cryptography==39.0.1
88
aiounittest==1.3.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
msrest==0.6.*
22
botframework-connector==4.15.0
33
botbuilder-schema==4.15.0
4-
aiohttp==3.8.3
4+
aiohttp==3.8.4

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.15.0",
1111
"botbuilder-core==4.15.0",
1212
"yarl<=1.4.2",
13-
"aiohttp>=3.6.2,<3.8.0",
13+
"aiohttp==3.8.4",
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,<3.8.0",
9+
"aiohttp==3.8.4",
1010
"botbuilder-schema==4.15.0",
1111
"botframework-connector==4.15.0",
1212
"botbuilder-core==4.15.0",

libraries/botbuilder-schema/setup.py

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

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

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

libraries/botframework-connector/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ msrest==0.6.*
22
botbuilder-schema==4.15.0
33
requests==2.27.1
44
PyJWT==2.4.0
5-
cryptography==3.3.2
5+
cryptography==39.0.1
66
msal==1.*

0 commit comments

Comments
 (0)
0