File tree 4 files changed +68
-4
lines changed 4 files changed +68
-4
lines changed Original file line number Diff line number Diff line change 62
62
name : Test Results (Py310-TF2.15-ubuntu)
63
63
path : ./**/test-results-*.xml
64
64
65
+ Test_py311_py_with_latest_tf :
66
+ strategy :
67
+ fail-fast : false
68
+ runs-on : ubuntu-latest
69
+
70
+ steps :
71
+ - name : Checkout code
72
+ uses : actions/checkout@v4
73
+
74
+ - name : Run Tests (Py311-TF2.18)
75
+ uses : ./.github/actions/keras_unit_test
76
+ with :
77
+ tf_version : ' 2.18.0'
78
+ python_version : ' 3.11'
79
+ ort_version : ' 1.16.3'
80
+ onnx_version : ' 1.16.1'
81
+
82
+ - name : Upload Test Results
83
+ if : always()
84
+ uses : actions/upload-artifact@v4
85
+ with :
86
+ name : Test Results (Py311-TF2.15-ubuntu)
87
+ path : ./**/test-results-*.xml
88
+
89
+
90
+ Test_py312_py_with_tf1_18 : # Do not change this name because it is used in Ruleset of this repo.
91
+ strategy :
92
+ fail-fast : false
93
+ runs-on : ubuntu-latest
94
+
95
+ steps :
96
+ - name : Checkout code
97
+ uses : actions/checkout@v4
98
+
99
+ - name : Run Tests (Py312-TF2.18)
100
+ uses : ./.github/actions/keras_unit_test
101
+ with :
102
+ tf_version : ' 2.18.0'
103
+ python_version : ' 3.12'
104
+ ort_version : ' 1.16.3'
105
+ onnx_version : ' 1.16.1'
106
+
107
+ - name : Upload Test Results
108
+ if : always()
109
+ uses : actions/upload-artifact@v4
110
+ with :
111
+ name : Test Results (Py312-TF2.15-ubuntu)
112
+ path : ./**/test-results-*.xml
113
+
65
114
Test_py37_with_tf1_15 : # Do not change this name because it is used in Ruleset of this repo.
66
115
strategy :
67
116
fail-fast : false
Original file line number Diff line number Diff line change @@ -102,12 +102,20 @@ jobs:
102
102
name :
103
103
- ' py38-tf2.13'
104
104
- ' py39-tf2.15'
105
+ - ' py311-tf2.18'
106
+ - ' py312-tf2.18
105
107
os: [' ubuntu-latest', 'windows-2022']
106
108
opset_version : ['18', '15']
107
109
ort_version : ['1.16.3']
108
110
onnx_version : ['1.16.1']
109
111
skip_tflite : ['False']
110
112
include :
113
+ - name : ' py311-tf2.18'
114
+ tf_version : ' 2.18.0'
115
+ python_version : ' 3.11'
116
+ - name : ' py312-tf2.18'
117
+ tf_version : ' 2.18.0'
118
+ python_version : ' 3.12'
111
119
- name : ' py38-tf2.13'
112
120
tf_version : ' 2.13.0'
113
121
python_version : ' 3.8'
@@ -154,4 +162,4 @@ jobs:
154
162
- name : Publish Test Results
155
163
uses : EnricoMi/publish-unit-test-result-action@v2
156
164
with :
157
- files : " **/pytest*.xml"
165
+ files : " **/pytest*.xml"
Original file line number Diff line number Diff line change @@ -76,12 +76,20 @@ jobs:
76
76
name :
77
77
- ' py38-tf2.13'
78
78
- ' py39-tf2.15'
79
+ - ' py312-tf2.18'
80
+ - ' py311-tf2.18'
79
81
os : ['ubuntu-latest', 'windows-2022']
80
82
opset_version : ['18', '15']
81
83
ort_version : ['1.16.3']
82
84
onnx_version : ['1.16.1']
83
85
skip_tflite : ['False']
84
86
include :
87
+ - name : ' py312-tf2.18'
88
+ tf_version : ' 2.18.0'
89
+ python_version : ' 3.12'
90
+ - name : ' py311-tf2.18'
91
+ tf_version : ' 2.18.0'
92
+ python_version : ' 3.11'
85
93
- name : ' py38-tf2.13'
86
94
tf_version : ' 2.13.0'
87
95
python_version : ' 3.8'
@@ -137,4 +145,4 @@ jobs:
137
145
- name : Publish Test Results
138
146
uses : EnricoMi/publish-unit-test-result-action@v2
139
147
with :
140
- files : " artifacts/**/*.xml"
148
+ files : " artifacts/**/*.xml"
Original file line number Diff line number Diff line change @@ -99,7 +99,6 @@ def run(self):
99
99
'Programming Language :: Python :: 3.8' ,
100
100
'Programming Language :: Python :: 3.9' ,
101
101
'Programming Language :: Python :: 3.10' ,
102
- 'Programming Language :: Python :: 3.11'
102
+ 'Programming Language :: Python :: 3.11' ,
103
103
'Programming Language :: Python :: 3.12' ]
104
- 'Programming Language :: Python :: 3.10' ]
105
104
)
You can’t perform that action at this time.
0 commit comments