microsoft / botbuilder-python

The Microsoft Bot Framework provides what you need to build and connect intelligent bots that interact naturally wherever your users are talking, from text/sms to Skype, Slack, Office 365 mail and other popular services.
http://botframework.com
MIT License
712 stars 285 forks source link

Remove unnecessary version specification of urllib3 in botbuilder-schema setup.py. #2160

Closed TypeTheory closed 2 months ago

TypeTheory commented 2 months ago

libraries/botbuilder-schema/setup.py specifies: REQUIRES = ["msrest== 0.7.*", "urllib3<2.0.0"] The specification for urllib3 is unneeded and erroneous as if one installs the packages in libraries/botbuilder-schema/requirements.txt, the urllib3 package that is installed is with a version >= 2. This specification also conflicts with most current packages for python 3.11 as they use urllib3 with version >= 2.

tracyboehrer commented 2 months ago

Duplicate of https://github.com/microsoft/botbuilder-python/issues/2142