diff --git a/Dockerfile b/Dockerfile index b1a2f46..3958f09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN npm install && \ FROM python:3.10.9-alpine -ENV VERSION_NUMBER 0.1.4 +ENV VERSION_NUMBER 0.1.2-3-g8e1c670 ENV PROD 1 RUN apk add \ diff --git a/Makefile b/Makefile index d80ea44..dc54e5e 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ sethookdir: git config core.hooksPath .githooks date: - python3 -c 'import datetime; from zoneinfo import ZoneInfo; print(datetime.datetime.isoformat(datetime.datetime.now(ZoneInfo("Europe/Prague")), timespec="minutes", sep=" "))' + poetry run python -c 'import datetime; from zoneinfo import ZoneInfo; print(datetime.datetime.isoformat(datetime.datetime.now(ZoneInfo("Europe/Prague")), timespec="minutes", sep=" "))' cleanstatic: rm -r src/web/static/* diff --git a/pyproject.toml b/pyproject.toml index acad6f4..55795fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "timetracker" -version = "0.1.4" +version = "0.1.2" description = "A simple time tracker." authors = ["Lukáš Kucharczyk "] license = "GPL"