|  | 
| 11 | 11 |       standalone_branch_suffix: | 
| 12 | 12 |         description: 'Suffix of the branch on standalone' | 
| 13 | 13 |         required: false | 
| 14 |  | -        default: '.pre1' | 
|  | 14 | +        default: '.pre0' | 
| 15 | 15 | 
 | 
| 16 | 16 | #┌───────────── minute (0 - 59) | 
| 17 | 17 | #│ ┌───────────── hour (0 - 23) | 
|  | 
| 24 | 24 | #* * * * * | 
| 25 | 25 | 
 | 
| 26 | 26 | env: | 
| 27 |  | -  ANSYS_VERSION: 232 | 
|  | 27 | +  ANSYS_VERSION: 241 | 
| 28 | 28 |   DOCUMENTATION_CNAME: 'dpf.docs.pyansys.com' | 
| 29 | 29 |   MAIN_PYTHON_VERSION: '3.8' | 
| 30 | 30 | 
 | 
| @@ -57,27 +57,36 @@ jobs: | 
| 57 | 57 |   tests: | 
| 58 | 58 |     uses: ./.github/workflows/tests.yml | 
| 59 | 59 |     with: | 
| 60 |  | -      ANSYS_VERSION: "232" | 
| 61 |  | -      python_versions: '["3.7", "3.8", "3.9", "3.10"]' | 
|  | 60 | +      ANSYS_VERSION: "241" | 
|  | 61 | +      python_versions: '["3.8", "3.9", "3.10"]' | 
| 62 | 62 |       wheel: true | 
| 63 | 63 |       wheelhouse: true | 
| 64 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }} | 
|  | 64 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
| 65 | 65 |     secrets: inherit | 
| 66 | 66 | 
 | 
| 67 | 67 |   docs: | 
| 68 | 68 |     uses: ./.github/workflows/docs.yml | 
| 69 | 69 |     with: | 
| 70 |  | -      ANSYS_VERSION: "232" | 
| 71 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }} | 
|  | 70 | +      ANSYS_VERSION: "241" | 
|  | 71 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
| 72 | 72 |       event_name: ${{ github.event_name }} | 
| 73 | 73 |     secrets: inherit | 
| 74 | 74 | 
 | 
| 75 | 75 |   examples: | 
| 76 | 76 |     uses: ./.github/workflows/examples.yml | 
|  | 77 | +    with: | 
|  | 78 | +      ANSYS_VERSION: "241" | 
|  | 79 | +      python_versions: '["3.8", "3.9", "3.10"]' | 
|  | 80 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
|  | 81 | +    secrets: inherit | 
|  | 82 | + | 
|  | 83 | +  retro_232: | 
|  | 84 | +    name: "retro 232" | 
|  | 85 | +    uses: ./.github/workflows/tests.yml | 
| 77 | 86 |     with: | 
| 78 | 87 |       ANSYS_VERSION: "232" | 
| 79 |  | -      python_versions: '["3.7", "3.8", "3.9", "3.10"]' | 
| 80 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }} | 
|  | 88 | +      python_versions: '["3.8"]' | 
|  | 89 | +      DOCSTRING: false | 
| 81 | 90 |     secrets: inherit | 
| 82 | 91 | 
 | 
| 83 | 92 |   retro_231: | 
| @@ -107,12 +116,19 @@ jobs: | 
| 107 | 116 |       DOCSTRING: false | 
| 108 | 117 |     secrets: inherit | 
| 109 | 118 | 
 | 
|  | 119 | +  pydpf-post_241: | 
|  | 120 | +    name: "PyDPF-Post with 241" | 
|  | 121 | +    uses: ./.github/workflows/pydpf-post.yml | 
|  | 122 | +    with: | 
|  | 123 | +      ANSYS_VERSION: "241" | 
|  | 124 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
|  | 125 | +    secrets: inherit | 
|  | 126 | + | 
| 110 | 127 |   pydpf-post_232: | 
| 111 | 128 |     name: "PyDPF-Post with 232" | 
| 112 | 129 |     uses: ./.github/workflows/pydpf-post.yml | 
| 113 | 130 |     with: | 
| 114 | 131 |       ANSYS_VERSION: "232" | 
| 115 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }} | 
| 116 | 132 |     secrets: inherit | 
| 117 | 133 | 
 | 
| 118 | 134 |   pydpf-post_231: | 
| @@ -140,29 +156,32 @@ jobs: | 
| 140 | 156 |     name: "gate" | 
| 141 | 157 |     uses: ./.github/workflows/gate.yml | 
| 142 | 158 |     with: | 
| 143 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }} | 
|  | 159 | +      python_versions: '["3.8"]' | 
|  | 160 | +      ANSYS_VERSION: "241" | 
|  | 161 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
| 144 | 162 |     secrets: inherit | 
| 145 | 163 | 
 | 
| 146 | 164 |   docker_tests: | 
| 147 | 165 |     name: "Build and Test on Docker" | 
| 148 | 166 |     uses: ./.github/workflows/test_docker.yml | 
| 149 | 167 |     with: | 
| 150 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre1' }} | 
|  | 168 | +      ANSYS_VERSION: "241" | 
|  | 169 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
| 151 | 170 |     secrets: inherit | 
| 152 | 171 | 
 | 
| 153 | 172 |   docker_examples: | 
| 154 | 173 |     name: "Run examples on Docker" | 
| 155 | 174 |     uses: ./.github/workflows/examples_docker.yml | 
| 156 | 175 |     with: | 
| 157 |  | -      ANSYS_VERSION: "232" | 
|  | 176 | +      ANSYS_VERSION: "241" | 
| 158 | 177 |       python_versions: '["3.8", "3.9", "3.10"]' | 
| 159 |  | -      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '' }} | 
|  | 178 | +      standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} | 
| 160 | 179 |     secrets: inherit | 
| 161 | 180 | 
 | 
| 162 | 181 |   draft_release: | 
| 163 | 182 |     name: "Draft Release" | 
| 164 | 183 |     if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | 
| 165 |  | -    needs: [style, tests, docs, examples, retro_222, retro_221, gate, pydpf-post_231, pydpf-post_222, pydpf-post_221, docker_tests] | 
|  | 184 | +    needs: [style, tests, docs, examples, retro_232, retro_231, retro_222, retro_221, gate, docker_tests] | 
| 166 | 185 |     runs-on: ubuntu-latest | 
| 167 | 186 |     steps: | 
| 168 | 187 |       - name: "Set up Python" | 
|  | 
0 commit comments