Skip to content

Commit 84fd19e

Browse files
committed
onnx
1 parent a8d1b94 commit 84fd19e

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,14 @@ jobs:
6161
- name: Install requirements
6262
run: python -m pip install -r requirements.txt
6363

64-
- name: Uninstall onnx
65-
run: python -m pip uninstall -y onnx
66-
6764
- name: Install requirements dev
6865
run: python -m pip install -r requirements-dev.txt
6966

67+
- name: Uninstall onnx and install onnx-weekly
68+
run: |
69+
python -m pip uninstall -y onnx
70+
python -m pip install onnx-weekly
71+
7072
- name: Cache pip
7173
uses: actions/cache@v4
7274
with:

.github/workflows/documentation.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,14 @@ jobs:
3838
- name: Install requirements
3939
run: python -m pip install -r requirements.txt
4040

41-
- name: Uninstall onnx
42-
run: python -m pip uninstall -y onnx
43-
4441
- name: Install requirements dev
4542
run: python -m pip install -r requirements-dev.txt
4643

44+
- name: Uninstall onnx and install onnx-weekly
45+
run: |
46+
python -m pip uninstall -y onnx
47+
python -m pip install onnx-weekly
48+
4749
- name: Cache pip
4850
uses: actions/cache@v4
4951
with:

_unittests/ut_reference/test_reference_back.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
class ExtendedReferenceEvaluatorBackendRep(onnx.backend.base.BackendRep):
1717
def __init__(self, session):
18+
super().__init__()
1819
self._session = session
1920

2021
def run(self, inputs, **kwargs):

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ furo
55
huggingface_hub
66
matplotlib
77
onnx-array-api>=0.3.1
8-
onnx-weekly
8+
onnx
99
git+https://github.com/microsoft/onnxscript.git
1010
openpyxl
1111
packaging

0 commit comments

Comments
 (0)