feat: Update version to 1.7.3 in Makefile, docker-build.sh, and pyproject.toml

This commit is contained in:
William Valentin
2025-08-01 13:21:48 -07:00
parent 41d91d9c30
commit 623050478a
4 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
TARGET=thechart
VERSION=1.6.1
VERSION=1.7.3
ROOT=/home/will
ICON=chart-671.png
SHELL=fish
@@ -85,7 +85,7 @@ install: ## Set up the development environment
@echo "To run tests: make test"
build: ## Build the Docker image
@echo "Building the Docker image..."
docker buildx build --platform linux/amd64,linux/arm64 -t ${IMAGE} --push .
docker buildx build --platform linux/amd64 -t ${IMAGE} --push .
deploy: ## Deploy the application as a standalone executable
@echo "Deploying the application..."
pyinstaller --name ${TARGET} --optimize 2 --onefile --windowed --hidden-import='PIL._tkinter_finder' --icon='${ICON}' --add-data="./.env:." --add-data='./chart-671.png:.' --add-data='./thechart_data.csv:.' --log-level=DEBUG src/main.py