File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ jobs:
155155 - name : Build executable
156156 run : |
157157 cd gui
158- pyinstaller -n vuegen_gui --windowed --collect-all pyvis --collect-all streamlit --collect-all st_aggrid --collect-all customtkinter --collect-all quarto_cli --collect-all plotly --collect-all _plotly_utils --collect-all traitlets --collect-all referencing --collect-all rpds --collect-all tenacity --collect-all pyvis --collect-all pandas --collect-all numpy --collect-all matplotlib --collect-all openpyxl --collect-all xlrd --collect-all nbformat --collect-all nbclient --collect-all altair --collect-all itables --collect-all kaleido --collect-all pyarrow --collect-all dataframe_image --collect-all narwhals --collect-all PIL --collect-all vl_convert --add-data ../docs/example_data/Basic_example_vuegen_demo_notebook:example_data/Basic_example_vuegen_demo_notebook --add-data ../docs/images/vuegen_logo.png:. app.py
158+ pyinstaller -n vuegen_gui --onefile -- windowed --collect-all pyvis --collect-all streamlit --collect-all st_aggrid --collect-all customtkinter --collect-all quarto_cli --collect-all plotly --collect-all _plotly_utils --collect-all traitlets --collect-all referencing --collect-all rpds --collect-all tenacity --collect-all pyvis --collect-all pandas --collect-all numpy --collect-all matplotlib --collect-all openpyxl --collect-all xlrd --collect-all nbformat --collect-all nbclient --collect-all altair --collect-all itables --collect-all kaleido --collect-all pyarrow --collect-all dataframe_image --collect-all narwhals --collect-all PIL --collect-all vl_convert --add-data ../docs/example_data/Basic_example_vuegen_demo_notebook:example_data/Basic_example_vuegen_demo_notebook --add-data ../docs/images/vuegen_logo.png:. app.py
159159 # --windowed only for mac, see:
160160 # https://pyinstaller.org/en/stable/usage.html#building-macos-app-bundles
161161 # 'Under macOS, PyInstaller always builds a UNIX executable in dist.'
Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ def generate_log_filename(folder: str = "logs", suffix: str = "") -> str:
642642 except OSError as e :
643643 raise OSError (f"Error creating directory '{ folder } ': { e } " )
644644 # MAIN FUNCTION
645- log_filename = get_time (incl_timezone = True ) + "_" + suffix + ".log"
645+ log_filename = get_time (incl_timezone = False ) + "_" + suffix + ".log"
646646 log_filepath = os .path .join (folder , log_filename )
647647
648648 return log_filepath
You can’t perform that action at this time.
0 commit comments