1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#!/usr/bin/env python3
"""Strip any `.devN` suffix from the package version in setup.py."""
from __future__ import annotations
from pathlib import Path
import re
def main() -> None:
"""Strip any `.devN` suffix from the package version in setup.py."""
project_root = Path(__file__).resolve().parents[1]
setup_path = project_root / "setup.py"
contents = setup_path.read_text(encoding="utf-8")
match = re.search(r'version="([^"]+)"', contents)
if not match:
raise SystemExit("version field not found in setup.py")
version = match.group(1)
new_version = re.sub(r"\.dev\d*$", "", version)
if new_version == version:
print("No dev suffix to strip")
return
new_contents = contents.replace(
f'version="{version}"', f'version="{new_version}"', 1
)
setup_path.write_text(new_contents, encoding="utf-8")
print(f"Updated version to {new_version}")
if __name__ == "__main__":
main()
|