Skip to content

Commit 6736e37

Browse files
committed
🚧 try to activate test env...
1 parent d89adf2 commit 6736e37

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/cdci.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)