abantos / bolt

A task automation tool (similart to grunt) for Python
MIT License
15 stars 8 forks source link

ValueError raised when pip version does not contain build number. #100

Closed CurroRodriguez closed 5 years ago

CurroRodriguez commented 6 years ago

Somehow, pip has jumped to version 18.0 and not build number has been specified, so when we split the version components to know how to load the entry point a ValueError is being raised because there are too many values to unpack.

We only check the minor version, so we can write it as major, *rest = .....

CurroRodriguez commented 5 years ago

This has been fixed in PR #101