Skip to content

Commit b280fa2

Browse files
authored
add setup-python to 3.13
dependabot wants to bump jsonschema to 4.26.0, which is incompatible with the older python that defaults on windows-2022 (or windows-default). research indicates that the best solution is to always use setup-python action to get reasonably-recent python in the action.
1 parent 587019e commit b280fa2

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/CI_build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
- name: Checkout repo
1717
uses: actions/checkout@v6
1818

19+
- name: Set up Python 3.13
20+
uses: actions/setup-python@v6
21+
with:
22+
python-version: '3.13' # Uses the latest patch version of the given version
23+
1924
- name: Install python modules
2025
working-directory: .
2126
run: python -m pip install -r requirements.txt

0 commit comments

Comments
 (0)