Mark H

Results 3 comments of Mark H

``` >>> a = SemVer("2.10.1.1+gdd213db", loose=True) >>> b = SemVer("2.10.100.1+gdd213db", loose=True) >>> vars(a) {'micro_versions': [1], 'minor': 10, 'raw': '2.10.1.1+gdd213db', 'major': 2, 'patch': 1, 'version': '2.10.1.1', 'build': ['gdd213db'], 'loose': True, 'prerelease':...

From #167 > That'd block 1.2.3.4 but 1.2.34.5 would still be misinterpreted as 1.2.3-4.5. The PR looks hopeful to my understanding but the comment above makes this seem like it's...

Ah I see, thanks for the explanation. I didn't understand the parsing order I think. If the change is made for loose versioning to support `1.2.34.5` (major 1, minor 2,...