(file: Path, bump_type: t.Optional[str] = None)
| 158 | |
| 159 | |
| 160 | def _bump_package(file: Path, bump_type: t.Optional[str] = None): |
| 161 | if file.name == PYPROJECT: |
| 162 | return _bump_pyproject_toml(file=file, bump_type=bump_type) |
| 163 | return _bump_setup_py(file=file, bump_type=bump_type) |
| 164 | |
| 165 | |
| 166 | @click.command("bump") |
no test coverage detected
searching dependent graphs…