diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index d35d581e..6b2ab824 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -82,7 +82,7 @@ jobs: run: pip install -r api/requirements.txt pyinstaller==6.6.0 - name: Build flask exe - run: pyinstaller api/app.spec --hidden-import=tiktoken_ext.openai_public --hidden-import=tiktoken_ext + run: pyinstaller --name app --onefile --console api/app.py --hidden-import=tiktoken_ext.openai_public --hidden-import=tiktoken_ext - name: Install dependencies run: npm install diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e1fefc7c..1a7a4092 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -82,7 +82,7 @@ jobs: run: pip install -r api/requirements.txt pyinstaller==6.6.0 - name: Build flask exe - run: pyinstaller api/app.spec --hidden-import=tiktoken_ext.openai_public --hidden-import=tiktoken_ext + run: pyinstaller --name app --onefile --console api/app.py --hidden-import=tiktoken_ext.openai_public --hidden-import=tiktoken_ext - name: Install dependencies run: npm install diff --git a/package-lock.json b/package-lock.json index caea9c67..6e355bde 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "LinguifAI", - "version": "0.3.0", + "version": "0.2.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "LinguifAI", - "version": "0.3.0", + "version": "0.2.4", "dependencies": { "@emotion/react": "^11.11.1", "@emotion/styled": "^11.11.0", diff --git a/package.json b/package.json index b8ed98e7..426c27b0 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "name": "Cameron", "email": "cameron.maloney@warriorlife.net" }, - "version": "0.3.0", + "version": "0.2.4", "main": "./public/electron.js", "homepage": "./", "private": true,