1717 name : build
1818 runs-on : ${{ matrix.os }}
1919 steps :
20- - if : ${{ matrix.os == 'windows-2019 ' }}
20+ - if : ${{ matrix.os == 'windows-latest ' }}
2121 uses : actions/cache@v3
2222 with :
2323 path : ~\AppData\Local\pip\Cache
4545 - run : |
4646 pip install --upgrade pip setuptools wheel
4747 pip install numpy==1.23.1 matplotlib==3.1.3
48- pip install pyinstaller==4.10 pyinstaller-hooks-contrib==2024.8
48+ pip install pyinstaller
4949 # this is a separate step because we need to set the CPPFLAGS and LDFLAGS env variables *after* installing mysql, in the next step
5050 - if : ${{ matrix.os == 'macos-13' }}
5151 run : |
8989 run : |
9090 pip install cython
9191 pip install --editable .
92- - if : ${{ matrix.os == 'windows-2019 ' }}
92+ - if : ${{ matrix.os == 'windows-latest ' }}
9393 run : |
9494 pyinstaller distribution/windows/CellProfiler-Analyst.spec
9595 iscc /dMyAppVersion="3.0.4.1" "distribution/windows/CellProfiler-Analyst.iss"
@@ -98,14 +98,14 @@ jobs:
9898 with :
9999 name : CellProfiler-Analyst-macOS-3.0.4.1.zip
100100 path : ./distribution/macos/dist/CellProfiler-Analyst-macOS-3.0.4.1.zip
101- - if : ${{ matrix.os == 'windows-2019 ' }}
101+ - if : ${{ matrix.os == 'windows-latest ' }}
102102 uses : actions/upload-artifact@v4
103103 with :
104104 name : CellProfiler-Analyst-Windows-3.0.4.1.exe
105105 path : ./distribution/windows/Output/CellProfiler-Analyst-Windows-3.0.4.1.exe
106106 strategy :
107107 matrix :
108- os : [macos-13, windows-2019 ]
108+ os : [macos-13, windows-latest ]
109109 python-version : [ "3.8" ]
110110 upload :
111111 name : upload
0 commit comments