diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 9e9f0945..596b0c1c 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -25,7 +25,7 @@ runs: - name: 📋 Install Dependencies shell: bash if: ${{ inputs.container == 'ubuntu-latest' }} - run: dnf install -y make automake gcc gcc-c++ kernel-devel cmake git python3 python3-pip python3-devel docker sed + run: dnf install -y make automake gcc gcc-c++ kernel-devel cmake git docker sed - name: 📋 Install OpenMP shell: bash diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 12f6a3ac..e34451ed 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -28,6 +28,11 @@ jobs: container: ${{ matrix.os }} install-vtk: false + - name: 🐍 Setup Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + - name: 🦥 Cache Dependencies uses: actions/cache@v4 with: @@ -79,6 +84,8 @@ jobs: - name: 🐍 Setup Python uses: actions/setup-python@v5 + with: + python-version: "3.12" - name: 🛞 CIBuildWheel run: python -m pip install cibuildwheel==2.17.0