Skip to content

Commit b09bc68

Browse files
committed
Specify specific python version
Previously, we were testing with the most recent, but our tox config didn't yet have 3.11, causing no tests to run.
1 parent 52f1cd1 commit b09bc68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/address-sanitizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: 3.x
28+
python-version: 3.11
2929

3030
- name: Install dependencies
3131
run: |

.github/workflows/clang-analyzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v4
2222
with:
23-
python-version: 3.x
23+
python-version: 3.11
2424

2525
- name: Build and run analyzer
2626
run: CFLAGS="-Werror -Wall -Wextra" scan-build --status-bugs python setup.py build

0 commit comments

Comments
 (0)