invalid version in setup.py
DuncanRowland opened this issue · 1 comments
DuncanRowland commented
git checkout master
python3 setup.py install
ValueError: invalid version in setup.py, was 0.0.0.2 but version tagged in git is 0.0.0.2-8-gacfc327
npryce commented
Doh! That's an unfortunate side-effect of our packaging and release process.
As a workaround you can check out version 0.0.0.2 so that you are working at a known tag with the following command:
git checkout 0.0.0.2
Then run python setup.py
Then finally switch back to HEAD with the command
git checkout
We'll fix this ASAP.