Skip to content

Commit 8305cac

Browse files
committed
fix merge conflicts
2 parents 86d482d + 59c3d32 commit 8305cac

File tree

14 files changed

+530
-1111
lines changed

14 files changed

+530
-1111
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@v5
4747
- name: Setup Python
48-
uses: actions/setup-python@v5
48+
uses: actions/setup-python@v6
4949
with:
5050
# Version range or exact version of Python to use, using SemVer's version range syntax. Reads from .python-version if unset.
5151
python-version: "3.10"

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v5
6161
- name: Setup Python ${{ matrix.python-version }}
62-
uses: actions/setup-python@v5
62+
uses: actions/setup-python@v6
6363
with:
6464
python-version: ${{ matrix.python-version }}
6565
- name: Install nox
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- uses: actions/checkout@v5
9999
- name: Setup Python
100-
uses: actions/setup-python@v5
100+
uses: actions/setup-python@v6
101101
with:
102102
python-version: "3.10"
103103
cache: pip
@@ -121,7 +121,7 @@ jobs:
121121
steps:
122122
- uses: actions/checkout@v5
123123
- name: Setup Python
124-
uses: actions/setup-python@v5
124+
uses: actions/setup-python@v6
125125
- name: Update readme
126126
run: |
127127
python docs/update_readme.py

.github/workflows/pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Pages
3030
uses: actions/configure-pages@v4
3131
- name: Setup Python
32-
uses: actions/setup-python@v5
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: "3.10"
3535
- uses: actions/checkout@v5

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
"ml-dtypes",
3030
)
3131
ONNX = "onnx==1.17"
32-
ONNX_RUNTIME = "onnxruntime==1.20.1"
33-
PYTORCH = "torch==2.5.1"
34-
TORCHVISON = "torchvision==0.20.1"
32+
ONNX_RUNTIME = "onnxruntime==1.23.0"
33+
PYTORCH = "torch==2.7.1"
34+
TORCHVISON = "torchvision==0.22.1"
3535
TRANSFORMERS = "transformers==4.37.2"
3636
ONNX_RUNTIME_NIGHTLY_DEPENDENCIES = (
3737
"flatbuffers",

onnxscript/backend/onnx_export_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def skip(pattern: str | Pattern, reason: str, *, condition: bool = True):
8484
),
8585
skip(r"^test_ai_onnx_ml_label_encoder", "ONNX Runtime does not support Opset 21 at 1.17"),
8686
skip(r"^test_ai_onnx_ml_tree_ensemble", "Opset 23 is not supported"),
87+
skip(r"^test_attention", "ONNX Runtime 1.23 fails on these tests"),
8788
)
8889

8990
if sys.platform == "win32":

0 commit comments

Comments
 (0)