File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 1515
1616class ExtendedReferenceEvaluatorBackendRep (onnx .backend .base .BackendRep ):
1717 def __init__ (self , session ):
18+ super ().__init__ ()
1819 self ._session = session
1920
2021 def run (self , inputs , ** kwargs ):
Original file line number Diff line number Diff line change 55huggingface_hub
66matplotlib
77onnx-array-api >= 0.3.1
8- onnx-weekly
8+ onnx
99git+https://github.com/microsoft/onnxscript.git
1010openpyxl
1111packaging
You can’t perform that action at this time.
0 commit comments