@@ -58,27 +58,24 @@ runs:
5858 path : ~/software
5959 key : ${{ runner.os }}-${{ steps.get-os-version.outputs.release }}_geant4_${{ env.GEANT4_VERSION }}_itk_${{ env.ITK_VERSION }}_build
6060 restore-keys : ${{ runner.os }}-${{ steps.get-os-version.outputs.release }}_geant4_${{ env.GEANT4_VERSION }}_itk_${{ env.ITK_VERSION }}_build
61- - name : Set up Python 3.14 in Linux and MacOS, handled by Conda in Windows
62- if : (inputs.os == 'ubuntu-24.04') || (inputs.os == 'ubuntu-24.04-arm') || (inputs.os == 'macos-15') || (inputs.os == 'macos-15-intel')
61+ - name : Set up Python 3.14 in Linux
62+ if : (inputs.os == 'ubuntu-24.04') || (inputs.os == 'ubuntu-24.04-arm')
6363 uses : actions/setup-python@v6
6464 with :
6565 python-version : ' 3.14'
66- - name : Set up Miniconda in Windows with pinned python 3.14
67- if : (inputs.os == 'windows-2025') || (inputs.os == 'windows-11-arm')
68- uses : conda-incubator/setup-miniconda@v3
69- with :
70- miniconda-version : " latest"
71- auto-update-conda : true
72- activate-environment : opengate_core
73- python-version : ' 3.14'
74- - name : Set up Miniconda in MacOS with variable python version
66+ - name : Set up Python 3.14 in Macos
7567 if : (inputs.os == 'macos-15') || (inputs.os == 'macos-15-intel')
68+ uses : actions/setup-python@v6
69+ with :
70+ python-version : ${{ inputs.python-version }}
71+ - name : Set up Miniconda in Windows and Macos with pinned python 3.14
72+ if : (inputs.os == 'windows-2025') || (inputs.os == 'windows-11-arm') || (inputs.os == 'macos-15') || (inputs.os == 'macos-15-intel')
7673 uses : conda-incubator/setup-miniconda@v3
7774 with :
7875 miniconda-version : " latest"
7976 auto-update-conda : true
8077 activate-environment : opengate_core
81- python-version : ${{ inputs.python-version }}
78+ python-version : ' 3.14 '
8279 - name : Create opengate_core Wheel Linux
8380 if : (inputs.os == 'ubuntu-24.04') || (inputs.os == 'ubuntu-24.04-arm')
8481 env :
0 commit comments