Skip to content

Commit

Permalink
Merge pull request #830 from pjonsson/permit-urllib3
Browse files Browse the repository at this point in the history
Permit urllib3 >=2 for non-PyPy Python >=3.10 in order to help users of Poetry
  • Loading branch information
hartwork committed Mar 11, 2024
2 parents 298a693 + 52da776 commit f3147f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ def run_tests(self):
"urllib3 <2; python_version <'3.10'",
# https://github.com/kevin1024/vcrpy/pull/775#issuecomment-1847849962
"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 = {
Expand Down

0 comments on commit f3147f5

Please sign in to comment.