mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-11 10:03:00 +00:00
Merge pull request #830 from pjonsson/permit-urllib3
Permit urllib3 >=2 for non-PyPy Python >=3.10 in order to help users of Poetry
This commit is contained in:
3
setup.py
3
setup.py
@@ -55,6 +55,9 @@ install_requires = [
|
|||||||
"urllib3 <2; python_version <'3.10'",
|
"urllib3 <2; python_version <'3.10'",
|
||||||
# https://github.com/kevin1024/vcrpy/pull/775#issuecomment-1847849962
|
# https://github.com/kevin1024/vcrpy/pull/775#issuecomment-1847849962
|
||||||
"urllib3 <2; platform_python_implementation =='PyPy'",
|
"urllib3 <2; platform_python_implementation =='PyPy'",
|
||||||
|
# Workaround for Poetry with CPython >= 3.10, problem description at:
|
||||||
|
# https://github.com/kevin1024/vcrpy/pull/826
|
||||||
|
"urllib3; platform_python_implementation !='PyPy' and python_version >='3.10'",
|
||||||
]
|
]
|
||||||
|
|
||||||
extras_require = {
|
extras_require = {
|
||||||
|
|||||||
Reference in New Issue
Block a user