File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
docker/platerec_installer Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6060 - name : Build Installer
6161 run : |
6262 cd docker/platerec_installer
63- pip install -r requirements.txt pyinstaller==4.9
64- pyinstaller platerec_installer.spec -F
63+ pip install --upgrade pip
64+ pip install -r requirements.txt pyinstaller==6.15.0
65+ pyinstaller platerec_installer.spec
6566 chmod -R +x dist
6667 - uses : actions/upload-artifact@v4
6768 with :
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ elif sys.platform == 'linux':
1616 site_packages = '/root/.pyenv/versions/3.7.5/lib/python3.7/site-packages/'
1717 pathex = ['/src' ]
1818else : # MacOs on GH Actions
19- site_packages = '/Users/runner/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages /'
19+ site_packages = __import__ ( 'sysconfig' ). get_path ( 'purelib' ) + ' /'
2020 pathex = [os .path .abspath (SPECPATH )]
2121
2222a = Analysis ( # noqa
You can’t perform that action at this time.
0 commit comments