We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb46a3 commit b9eef58Copy full SHA for b9eef58
src/pip/_internal/utils/packaging.py
@@ -33,8 +33,7 @@ def check_requires_python(
33
python_version = version.parse(".".join(map(str, version_info)))
34
return python_version in requires_python_specifier
35
36
-
37
-@functools.lru_cache(maxsize=2048)
+@functools.lru_cache(maxsize=8192)
38
def get_requirement(req_string: str) -> Requirement:
39
"""Construct a packaging.Requirement object with caching"""
40
# Parsing requirement strings is expensive, and is also expected to happen
0 commit comments