Installing goes fine, with no dependency conflicts
Current Behavior
$ pip install -Ur requirements.txt
...
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
dblpy 0.3.4 requires aiohttp<3.7.0,>=3.3.0, but you have aiohttp 3.7.3 which is incompatible.
Successfully installed aiofiles-0.6.0 aiohttp-3.7.3 humanize-3.2.0 yarl-1.6.3
...
Expected Behavior
Installing goes fine, with no dependency conflicts
Current Behavior
Development Environment
Python: 3.8.5 Pip: 20.3.3 sdk: 0.3.4
Steps to Reproduce
Requirements file:
pip install -Ur requirements.txt
(or --upgrade -r requirements.txt)I believe that this could be resolved by specifying a greater than version in your requirements.txt. For example,
aiohttp>=3.6