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
Starting with pip>=20.1 calls to Resolver.resolve will move from accepting a RequirementSet instance to root_reqs: List[InstallRequirement], check_supports_wheel: bool.
The text was updated successfully, but these errors were encountered:
- Add `wheel_cache` context manager helper for managing global context
when creating wheel wheel_cache instances
- Add optional `check_supports_wheel` argument to `Resolver.resolve()`
call when expected arguments include this one
- Inspect `InstallRequirement.ensure_build_location()` method and
include `autodelete` kwarg if it is expected
- Update argument types passed into `resolver.resolve` which, as of
`pip>=20.1` will expect a list of `InstallRequirement` instances
- Update `Resolver` import path to point at new location
(`resolution.legacy.resolver`)
- Add necessary `global_tempdir_manager` contexts in tests
- Fix expected `RequirementSet.cleanup()` call after
`Resolver.resolve()` which no longer applies due to use of transient
`RequirementSet`
- Fixes#58
- Fixes#59
- Fixes#60
- Fixes#61
- Fixes#62
Signed-off-by: Dan Ryan <[email protected]>
Starting with
pip>=20.1
calls toResolver.resolve
will move from accepting aRequirementSet
instance toroot_reqs: List[InstallRequirement], check_supports_wheel: bool
.The text was updated successfully, but these errors were encountered: