determine if using new versioning scheme
(self, major)
| 348 | return bool(int(major) >= 3000 and int(major) < VERSION_LIMIT) |
| 349 | |
| 350 | def can_have_dot_zero(self, major): |
| 351 | """ |
| 352 | determine if using new versioning scheme |
| 353 | """ |
| 354 | return bool(int(major) >= 3006 and int(major) < VERSION_LIMIT) |
| 355 | |
| 356 | @classmethod |
| 357 | def parse(cls, version_string): |