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