Skip to content

Commit d6f4fa9

Browse files
committed
feat: Remove gpt4all exclusion from build process
1 parent 8073976 commit d6f4fa9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ test-utils:
4848
# Target to create an executable using PyInstaller
4949
build: install
5050
$(PI) install --upgrade pyinstaller
51+
$(PI) uninstall gpt4all -y
5152
$(PYINSTALLER) main.py \
5253
--onefile \
5354
--exclude pandas \
@@ -59,14 +60,14 @@ build: install
5960
--exclude matplotlib \
6061
--exclude PyQt5 \
6162
--exclude PyQt6 \
62-
--exclude gpt4all \
6363
--exclude share \
6464
--icon assets/logo.png \
6565
--noconfirm
6666

6767
# Target to create .deb file
6868
build-deb: install
6969
$(PI) install --upgrade pyinstaller
70+
$(PI) uninstall gpt4all -y
7071
$(PYINSTALLER) main.py \
7172
--onedir \
7273
--exclude pandas \
@@ -78,7 +79,6 @@ build-deb: install
7879
--exclude matplotlib \
7980
--exclude PyQt5 \
8081
--exclude PyQt6 \
81-
--exclude gpt4all \
8282
--exclude share \
8383
--name pytgpt \
8484
--contents-directory . \

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
setup(
5656
name="python-tgpt",
57-
version="0.7.9",
57+
version="0.8.0",
5858
license="MIT",
5959
author="Smartwa",
6060
maintainer="Smartwa",

0 commit comments

Comments
 (0)