|
49 | 49 | with:
|
50 | 50 | python-version: "3.x"
|
51 | 51 |
|
| 52 | + - name: Homebrew Python |
| 53 | + if: startsWith( matrix.os, 'macos') |
| 54 | + run: brew install python |
| 55 | + shell: bash |
| 56 | + |
| 57 | + - name: Add Conda to PATH |
| 58 | + if: startsWith( matrix.os, 'windows') |
| 59 | + run: | |
| 60 | + $path = $env:PATH + ";" + $env:CONDA + "\condabin" |
| 61 | + echo "PATH=$path" >> $env:GITHUB_ENV |
| 62 | +
|
52 | 63 | - name: Add Conda to PATH
|
53 |
| - if: startsWith( matrix.os, 'windows') || startsWith( matrix.os, 'ubuntu') |
54 |
| - run: echo "PATH=$PATH;$CONDA/condabin" >> $GITHUB_ENV |
| 64 | + if: startsWith( matrix.os, 'ubuntu') |
| 65 | + run: echo "PATH=$PATH:$CONDA/condabin" >> $GITHUB_ENV |
55 | 66 | shell: bash
|
56 | 67 |
|
57 | 68 | - name: Install Conda + add to PATH
|
@@ -110,15 +121,15 @@ jobs:
|
110 | 121 | if: startsWith( matrix.os, 'ubuntu') || startsWith( matrix.os, 'macos')
|
111 | 122 | run: |
|
112 | 123 | pyenv install --list
|
113 |
| - pyenv install 3.12.3 3.11.9 3.10.14 3.9.19 3.8.19 |
| 124 | + pyenv install 3.12.3 3.8.19 |
114 | 125 | shell: bash
|
115 | 126 |
|
116 | 127 | # pyenv-win install list has not updated for a while
|
117 | 128 | - name: Install Pyenv Python(s)
|
118 | 129 | if: startsWith( matrix.os, 'windows')
|
119 | 130 | run: |
|
120 | 131 | pyenv install --list
|
121 |
| - pyenv install 3.10.5 3.9.13 3.8.10 |
| 132 | + pyenv install 3.10.5 3.8.10 |
122 | 133 | shell: bash
|
123 | 134 |
|
124 | 135 | - name: Rust Tool Chain setup
|
|
0 commit comments