From 6089493e77cbf92c080d4d068af85621aff9b030 Mon Sep 17 00:00:00 2001 From: Benoit Clennett-Sirois Date: Wed, 28 Feb 2024 11:28:45 -0500 Subject: [PATCH] Remove pypy constraint for urllib3 --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7a49061d..3291b46b 100644 --- a/setup.py +++ b/setup.py @@ -47,14 +47,12 @@ def run_tests(self): "wrapt", "yarl", # Support for urllib3 >=2 needs CPython >=3.10 - # so we need to block urllib3 >=2 for Python <3.10 and PyPy for now. + # so we need to block urllib3 >=2 for Python <3.10 for now. # Note that vcrpy would work fine without any urllib3 around, # so this block and the dependency can be dropped at some point # in the future. For more Details: # https://github.com/kevin1024/vcrpy/pull/699#issuecomment-1551439663 "urllib3 <2; python_version <'3.10'", - # https://github.com/kevin1024/vcrpy/pull/775#issuecomment-1847849962 - "urllib3 <2; platform_python_implementation =='PyPy'", ] extras_require = {