Skip to content

Commit

Permalink
ci: updated to Python 3.12 in release-notes job, made build_changelog…
Browse files Browse the repository at this point in the history
….sh script compatible with Python 3.9 and before
  • Loading branch information
ErikBjare committed Oct 5, 2024
1 parent 8dc38ba commit 6888f5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.12"

- name: Install deps
run: |
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def build(
commit_range: Tuple[str, str],
output_path: str,
repo_order: List[str],
filter_types: List[str] | None = None,
filter_types: Optional[List[str]] = None,
):
# provides a commit summary for the repo and subrepos, recursively looking up subrepos
# NOTE: this must be done *before* `get_all_contributors` is called,
Expand Down

0 comments on commit 6888f5f

Please sign in to comment.