File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -134,14 +134,14 @@ jobs:
134134 python-version : ["3.11"]
135135 os :
136136 # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow#example-using-a-multi-dimension-matrix
137- - runner : " ubuntu-latest"
138- label : " ubuntu-latest_LTS-x64"
139- - runner : " macos-13"
140- label : " macos-13-x64"
137+ # - runner: "ubuntu-latest"
138+ # label: "ubuntu-latest_LTS-x64"
139+ # - runner: "macos-13"
140+ # label: "macos-13-x64"
141141 - runner : " macos-15"
142142 label : " macos-15-arm64"
143- - runner : " windows-latest"
144- label : " windows-x64"
143+ # - runner: "windows-latest"
144+ # label: "windows-x64"
145145 steps :
146146 - uses : actions/checkout@v4
147147 # - uses: actions/setup-python@v5
@@ -151,17 +151,18 @@ jobs:
151151 with :
152152 auto-update-conda : true
153153 python-version : ${{ matrix.python-version }}
154- auto-activate-base : true
155154 activate-environment : " test"
156155 - name : Install VueGen GUI and pyinstaller
157156 run : |
158157 conda info
159158 conda info -e
159+ conda activate test
160160 conda list
161161 python -m pip install ".[gui]" pyinstaller
162162 conda list
163163 - name : Build executable
164164 run : |
165+ conda activate test
165166 cd gui
166167 pyinstaller -n vuegen_gui -D --collect-all pyvis --collect-all streamlit --collect-all st_aggrid --collect-all customtkinter --collect-all quarto_cli --collect-all jupyter_core --collect-all yaml --collect-all ipykernel --collect-all nbconvert --collect-all notebook --collect-all ipywidgets --collect-all jupyter_console --collect-all jupyter_client --add-data ../docs/example_data/Basic_example_vuegen_demo_notebook:example_data/Basic_example_vuegen_demo_notebook app.py
167168 conda info
You can’t perform that action at this time.
0 commit comments