(self)
| 26 | |
| 27 | class PyVersionChange(VersionChange): |
| 28 | def run(self) -> list[Node]: |
| 29 | # Replace the 'next' special token with the current development version |
| 30 | self.arguments[0] = expand_version_arg( |
| 31 | self.arguments[0], self.config.release |
| 32 | ) |
| 33 | return super().run() |
| 34 | |
| 35 | |
| 36 | class DeprecatedRemoved(VersionChange): |
nothing calls this directly
no test coverage detected