File tree 8 files changed +15
-13
lines changed
8 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 21
21
22
22
- uses : actions/setup-python@v4
23
23
with :
24
- python-version : ' 3.11 '
24
+ python-version : ' 3.12 '
25
25
26
26
- uses : tlylt/install-graphviz@v1
27
27
57
57
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
58
58
59
59
- name : Install
60
- run : python setup.py install
60
+ run : python -m pip install -e . -v
61
61
62
62
- name : Copy license, changelogs
63
63
run : |
Original file line number Diff line number Diff line change 19
19
20
20
- uses : actions/setup-python@v4
21
21
with :
22
- python-version : ' 3.11 '
22
+ python-version : ' 3.12 '
23
23
24
24
- name : build wheel
25
25
run : python -m pip wheel .
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Change Logs
4
4
0.3.1
5
5
+++++
6
6
7
+ * :pr: `100 `: updates requirements, add 3.12
7
8
* :pr: `96 `: supports local functions in translator
8
9
* :pr: `95 `: improves translation to GraphBuilder
9
10
Original file line number Diff line number Diff line change 121
121
"inner API" : "https://onnx.ai/onnx/intro/python.html" ,
122
122
"JIT" : "https://en.wikipedia.org/wiki/Just-in-time_compilation" ,
123
123
"onnx" : "https://onnx.ai/onnx/" ,
124
- "onnx-graphsurgeon" : "https://docs.nvidia. com/deeplearning/tensorrt/ onnx-graphsurgeon/docs/index.html " ,
124
+ "onnx-graphsurgeon" : "https://github. com/NVIDIA/TensorRT/tree/main/tools/ onnx-graphsurgeon" ,
125
125
"onnx.helper" : "https://onnx.ai/onnx/api/helper.html" ,
126
126
"ONNX" : "https://onnx.ai/" ,
127
127
"ONNX Operators" : "https://onnx.ai/onnx/operators/" ,
Original file line number Diff line number Diff line change 51
51
vmImage : ' ubuntu-latest'
52
52
strategy :
53
53
matrix :
54
- Python311 -Linux :
55
- python.version : ' 3.11 '
54
+ Python312 -Linux :
55
+ python.version : ' 3.12 '
56
56
maxParallel : 3
57
57
58
58
steps :
@@ -155,8 +155,8 @@ jobs:
155
155
vmImage : ' ubuntu-latest'
156
156
strategy :
157
157
matrix :
158
- Python311 -Linux :
159
- python.version : ' 3.11 '
158
+ Python312 -Linux :
159
+ python.version : ' 3.12 '
160
160
maxParallel : 3
161
161
162
162
steps :
@@ -208,8 +208,8 @@ jobs:
208
208
vmImage : ' windows-latest'
209
209
strategy :
210
210
matrix :
211
- Python311 -Windows :
212
- python.version : ' 3.11 '
211
+ Python312 -Windows :
212
+ python.version : ' 3.12 '
213
213
maxParallel : 3
214
214
215
215
steps :
Original file line number Diff line number Diff line change
1
+ array_api_compat
2
+ array_api_strict
1
3
autopep8
2
4
black
3
5
coverage
Original file line number Diff line number Diff line change 1
- array_api_compat
2
- array_api_strict
3
1
numpy
4
2
onnx >= 1.15.0
5
3
scipy
Original file line number Diff line number Diff line change 62
62
"Operating System :: Unix" ,
63
63
"Operating System :: MacOS" ,
64
64
"Programming Language :: Python :: 3" ,
65
- "Programming Language :: Python :: 3.8" ,
66
65
"Programming Language :: Python :: 3.9" ,
67
66
"Programming Language :: Python :: 3.10" ,
68
67
"Programming Language :: Python :: 3.11" ,
68
+ "Programming Language :: Python :: 3.12" ,
69
+ "Programming Language :: Python :: 3.13" ,
69
70
],
70
71
)
You can’t perform that action at this time.
0 commit comments