Skip to content

Commit f0ce788

Browse files
committed
fixups
1 parent 19bc222 commit f0ce788

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/triage/jax_toolbox_triage/main.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,7 @@ def commits(start, end, dir):
167167
assert end_jax_commit == jax_commits[-1][0]
168168
assert end_xla_commit == xla_commits[-1][0]
169169

170-
def build_and_test(
171-
jax_commit: str, xla_commit: str
172-
) -> tuple[bool, str, str]:
170+
def build_and_test(jax_commit: str, xla_commit: str) -> tuple[bool, str, str]:
173171
"""
174172
The main body of the bisection loop. Update the JAX/XLA commits, build XLA and
175173
jaxlib, and run the test command. Throws on error when checking out or

.github/workflows/triage-ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
uses: actions/checkout@v4
3030
with:
3131
sparse-checkout: .github/triage
32-
- name: "Setup Python 3.7"
32+
- name: "Setup Python 3.12"
3333
uses: actions/setup-python@v5
3434
with:
35-
python-version: '3.7'
35+
python-version: '3.12'
3636
- name: "Install jax-toolbox-triage / mypy"
3737
run: pip install jax mypy pytest .github/triage
3838
- name: "Run mypy checks"
@@ -56,7 +56,7 @@ jobs:
5656
with:
5757
python-version: '${{ matrix.PYTHON_VERSION }}'
5858
- name: "Install jax-toolbox-triage"
59-
run: pip install jax .github/triage
59+
run: pip install pytest .github/triage
6060
- name: "Run tests"
6161
shell: bash -x -e {0}
6262
run: |

0 commit comments

Comments
 (0)