We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 298a693 + 52da776 commit f3147f5Copy full SHA for f3147f5
setup.py
@@ -55,6 +55,9 @@ def run_tests(self):
55
"urllib3 <2; python_version <'3.10'",
56
# https://github.com/kevin1024/vcrpy/pull/775#issuecomment-1847849962
57
"urllib3 <2; platform_python_implementation =='PyPy'",
58
+ # Workaround for Poetry with CPython >= 3.10, problem description at:
59
+ # https://github.com/kevin1024/vcrpy/pull/826
60
+ "urllib3; platform_python_implementation !='PyPy' and python_version >='3.10'",
61
]
62
63
extras_require = {
0 commit comments