You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
× No solution found when resolving dependencies:
╰─▶ Because pytest-aiohttp 1.0.5 depends on aiohttp ∅ and root 0a0.dev0 depends on pytest-aiohttp 1.0.5, root 0a0.dev0 is forbidden.
It passes when removing aiohttp==3.9.0b0;python_version>='3.12', even though the markers shouldn't match there anyway
Good find, this is a good first issue. We need to filter constraints in the resolver's get_dependencies method (see iter_requirements for an example of how to filter requirements).
requirements.txt:
package_constraints.txt:
This fails on python 3.9:
It passes when removing
aiohttp==3.9.0b0;python_version>='3.12'
, even though the markers shouldn't match there anywayPart of #199
The text was updated successfully, but these errors were encountered: