determine if using new versioning scheme
(self, major)
| 342 | self.sha = sha |
| 343 | |
| 344 | def new_version(self, major): |
| 345 | """ |
| 346 | determine if using new versioning scheme |
| 347 | """ |
| 348 | return bool(int(major) >= 3000 and int(major) < VERSION_LIMIT) |
| 349 | |
| 350 | def can_have_dot_zero(self, major): |
| 351 | """ |
no outgoing calls