FIX: Use only numeric versions in Git, ignore other tags with the same prefix#256
FIX: Use only numeric versions in Git, ignore other tags with the same prefix#256
Conversation
|
@yarikoptic Care to review? Regardless of how #255 turns out, this seems like it should be correct. |
well,
I have a general reservation against this approach for probably no more (if any) of 1% of use cases where someone does have a version which doesn't start with a digit but some alpha/letter for some obnoxious reason (e.g. |
Huh. I guess technically it supports non-PEP440 tags. Though if I try to It feels to me like not something we should try to support. |
yes it does. Do we know if versioneer is only used for Python projects? anyways -- I do agree that it feels that we shouldn't even bother supporting versions which do not start with
|
|
It is specifically a patch into distutils/setuptools' As you say, people do need to manually upgrade to a new version of versioneer, and we can get a report when it happens. Your approach isn't going to be harder to implement at that time, and that time may never come. |
e0ebd27 to
fc819b9
Compare
|
Supporting non-python projects is not in scope, so non-PEP-440 tags are not in scope. |
Replaces #105.