()
| 20 | from pathlib import Path |
| 21 | |
| 22 | def print_usage(): |
| 23 | print("Usage: parseContributorsFromChanges.py <version>") |
| 24 | print(" <version>: Version number (e.g., 9.10.0)") |
| 25 | print("\nThis script parses all YAML files in changelog/v<version>/ and extracts unique authors.") |
| 26 | print("Output is a comma-separated list of authors sorted by name.") |
| 27 | sys.exit(1) |
| 28 | |
| 29 | if len(sys.argv) < 2: |
| 30 | print("Error: Missing required argument <version>") |
no test coverage detected
searching dependent graphs…