This [PR](https://github.com/python/typeshed/pull/10812) creates a breaking change because it adds: ``` urllib3>=2 ``` As of this writing, `requests` itself has this dependency declaration: ``` urllib3>=1.21.1,<3 ``` This means that there are scenarios where `requests` can be installed, but `types-requests` cannot. In my case, I am using `boto3` and `botocore` for AWS interactions and it defines its own `urllib3` dependency range that produces this incompatiblity: ``` urllib3>=1.25.4,<1.27 ``` Please consider aligning the `types-requests` version ranges to the same bounds that `requests` itself uses.