Skip to content

Commit 43aed2b

Browse files
committed
freeze
1 parent fcd04f3 commit 43aed2b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest]
1919
python: ['3.10', '3.11', '3.12', '3.13']
20-
transformers: ['4.48.3', '4.51.3', '4.52.4', '4.55.4', '4.56.2', '4.57.1', 'main']
20+
transformers: ['4.48.3', '4.51.3', '4.52.4', '4.55.4', '4.56.2', '4.57.3', 'main']
2121
torch: ['2.9', 'main']
2222
exclude:
2323
- python: '3.10' # 3.10
@@ -33,7 +33,7 @@ jobs:
3333
- python: '3.10'
3434
transformers: '4.56.2'
3535
- python: '3.10'
36-
transformers: '4.57.1'
36+
transformers: '4.57.3'
3737
- python: '3.11' # 3.11
3838
torch: 'main'
3939
- python: '3.11'
@@ -43,7 +43,7 @@ jobs:
4343
- python: '3.11'
4444
transformers: '4.56.2'
4545
- python: '3.11'
46-
transformers: '4.57.1'
46+
transformers: '4.57.3'
4747
- python: '3.13' # 3.11
4848
torch: '2.9'
4949
- python: '3.13'

.github/workflows/model.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ci
1+
name: MODEL
22

33
on:
44
push:
@@ -10,14 +10,14 @@ on:
1010

1111
jobs:
1212
run:
13-
name: MODEL to-${{ matrix.torch }}-tr-${{ matrix.transformers }}-ci ${{ matrix.os }}-${{ matrix.python }}
13+
name: to-${{ matrix.torch }}-tr-${{ matrix.transformers }}-ci ${{ matrix.os }}-${{ matrix.python }}
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest]
1919
python: ['3.12']
20-
transformers: ['main']
20+
transformers: ['4.57.3']
2121
torch: ['main']
2222
steps:
2323
- uses: actions/checkout@v3

onnx_diagnostic/ext_test_case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1245,7 +1245,7 @@ def assert_onnx_disc(
12451245
if isinstance(proto, str):
12461246
name = proto
12471247
proto = onnx.load(name)
1248-
elif not self.unit_tst_going():
1248+
elif not self.unit_test_going():
12491249
assert isinstance(
12501250
proto, onnx.ModelProto
12511251
), f"Unexpected type {type(proto)} for proto"

0 commit comments

Comments
 (0)