@@ -73,21 +73,42 @@ jobs:
73
73
name : ${{ steps.wheel.outputs.wheel_name }}
74
74
path : dist/${{ steps.wheel.outputs.wheel_name }}
75
75
76
- tests :
76
+ tests_3_9 :
77
77
uses : ./.github/workflows/tests.yml
78
78
with :
79
79
ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
80
- python_versions : ' ["3.9", "3.10", "3.11" ]'
80
+ python_versions : ' ["3.9"]'
81
81
wheel : true
82
82
wheelhouse : true
83
83
standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
84
84
secrets : inherit
85
85
86
+ tests :
87
+ uses : ./.github/workflows/tests.yml
88
+ with :
89
+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
90
+ python_versions : ' ["3.10", "3.11"]'
91
+ wheel : false
92
+ wheelhouse : true
93
+ standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
94
+ secrets : inherit
95
+
96
+ tests_any_3_9 :
97
+ uses : ./.github/workflows/tests.yml
98
+ with :
99
+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
100
+ python_versions : ' ["3.9"]'
101
+ wheel : false
102
+ wheelhouse : false
103
+ standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
104
+ test_any : true
105
+ secrets : inherit
106
+
86
107
tests_any :
87
108
uses : ./.github/workflows/tests.yml
88
109
with :
89
110
ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '251' }}
90
- python_versions : ' ["3.9", "3. 10", "3.11"]'
111
+ python_versions : ' ["3.10", "3.11"]'
91
112
wheel : true
92
113
wheelhouse : false
93
114
standalone_suffix : ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
@@ -211,7 +232,7 @@ jobs:
211
232
draft_release :
212
233
name : " Draft Release"
213
234
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
214
- needs : [style, tests, docs, examples, retro_232, retro_231, retro_222, docker_tests]
235
+ needs : [style, tests, tests_3_9, tests_any, tests_any_3_9, docs, examples, retro_232, retro_231, retro_222, docker_tests]
215
236
runs-on : ubuntu-latest
216
237
steps :
217
238
- name : " Download artifacts"
0 commit comments