Project specified python version: 3.7.9
urllib3 version from Pipfile.lock: "version": "==1.25.11"
Due to a security problem I want to update urllib3 to ">=1.26.5"
As this comes with Python, and we can't upgrade python right now I wanted to bump it separately. I'm fairly new to Python.
What I tried:
pipenv install urllib3~=1.26.5
What I got:
Resolving dependencies... ✘ Locking Failed! Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
Is it not possible to ugrade urllib3 without bumping my Python version? If it is possible, what am I doing wrong? I also checked pipenv was up to date.