Skip to content

Commit 8c60a88

Browse files
committed
add jinja2 to build environments
1 parent cdc18f0 commit 8c60a88

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

.github/workflows/kcpp-build-release-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
apt-get update && apt-get install -y build-essential && \
7272
apt-get update && apt-get install -y gcc-12 g++-12 && \
7373
export LD_LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12:$LD_LIBRARY_PATH && \
74-
pip install customtkinter pyinstaller tk && \
74+
pip install customtkinter pyinstaller tk jinja2 && \
7575
cd /src && \
7676
pyinstaller --noconfirm --onefile --collect-all customtkinter --collect-all jinja2 --collect-all psutil \
7777
--add-data './koboldcpp_default.so:.' \

.github/workflows/kcpp-build-release-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Dependencies
2929
id: depends
3030
run: |
31-
pip install customtkinter pyinstaller tk
31+
pip install customtkinter pyinstaller tk jinja2
3232
3333
- name: Build
3434
id: make_build

.github/workflows/kcpp-build-release-win-olderpc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install python dependencies
3434
run: |
3535
python -m pip install --upgrade pip
36-
pip install customtkinter==5.2.0 pyinstaller==5.12.0 psutil==5.9.5
36+
pip install customtkinter==5.2.0 pyinstaller==5.12.0 psutil==5.9.5 jinja2==3.1.6
3737
3838
- name: Display full Visual Studio info Before
3939
run: |

.github/workflows/kcpp-build-release-win-oldpc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install python dependencies
3434
run: |
3535
python -m pip install --upgrade pip
36-
pip install customtkinter==5.2.0 pyinstaller==5.12.0 psutil==5.9.5
36+
pip install customtkinter==5.2.0 pyinstaller==5.12.0 psutil==5.9.5 jinja2==3.1.6
3737
3838
- name: Display full Visual Studio info Before
3939
run: |

.github/workflows/kcpp-build-release-win.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install python dependencies
3434
run: |
3535
python -m pip install --upgrade pip
36-
pip install customtkinter==5.2.0 pyinstaller==5.12.0 psutil==5.9.5
36+
pip install customtkinter==5.2.0 pyinstaller==5.12.0 psutil==5.9.5 jinja2==3.1.6
3737
3838
- name: Display full Visual Studio info Before
3939
run: |

environment-nocuda.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ dependencies:
1818
- libvulkan-loader
1919
- tk=*=xft_*
2020
- psutil
21+
- jinja2
2122
- pip:
2223
- customtkinter

environment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ dependencies:
2121
- libvulkan-loader
2222
- tk=*=xft_*
2323
- psutil
24+
- jinja2
2425
- pip:
2526
- customtkinter

0 commit comments

Comments
 (0)