After forking the Numpy repository and setting up the dev container for it, I attempted to run python runtests.py -v
but it returns the following error
Building, see build.log...
Traceback (most recent call last):
File "/workspaces/numpy/setup.py", line 47, in <module>
raise RuntimeError(f'Cannot parse version {FULLVERSION}')
RuntimeError: Cannot parse version 0+untagged.32327.g0200e4a
I think it has something to do with the last commit being untagged, as 0200e4a
matches the first part of the last commit id, but tagging the commit and checking it out did not work.
Reading the code on the numpy repository (in setup.py
, versioneer.py
and setup.cfg
):
numpy expects version tags in the vX.Y.Z[suffix]
format (with a leading v
, and 3 dot separated numbers)
git tag v1.2.3.dev
Also worth noting: the Readme gives instructions to run the tests with:
python -c "import numpy, sys; sys.exit(numpy.test() is False)"
so if you don't need to also test the build step, you may try that.
I'm not competent enough to say if this instruction is still up to date, though.