10 lines
280 B
Python
10 lines
280 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility wrapper for the release catalog generator."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
import runpy
|
|
|
|
runpy.run_path(str(Path(__file__).resolve().parent / "release" / "generate-release-catalog.py"), run_name="__main__")
|