Skip to content

Commit

Permalink
feat: Remove gpt4all exclusion from build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Simatwa committed Nov 10, 2024
1 parent 8073976 commit d6f4fa9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ test-utils:
# Target to create an executable using PyInstaller
build: install
$(PI) install --upgrade pyinstaller
$(PI) uninstall gpt4all -y
$(PYINSTALLER) main.py \
--onefile \
--exclude pandas \
Expand All @@ -59,14 +60,14 @@ build: install
--exclude matplotlib \
--exclude PyQt5 \
--exclude PyQt6 \
--exclude gpt4all \
--exclude share \
--icon assets/logo.png \
--noconfirm

# Target to create .deb file
build-deb: install
$(PI) install --upgrade pyinstaller
$(PI) uninstall gpt4all -y
$(PYINSTALLER) main.py \
--onedir \
--exclude pandas \
Expand All @@ -78,7 +79,6 @@ build-deb: install
--exclude matplotlib \
--exclude PyQt5 \
--exclude PyQt6 \
--exclude gpt4all \
--exclude share \
--name pytgpt \
--contents-directory . \
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

setup(
name="python-tgpt",
version="0.7.9",
version="0.8.0",
license="MIT",
author="Smartwa",
maintainer="Smartwa",
Expand Down

0 comments on commit d6f4fa9

Please sign in to comment.