Skip to content

Commit

Permalink
Next minor version 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
boamaod authored Feb 25, 2023
1 parent 1519c90 commit 8ea0b33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pseudovote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from datetime import datetime
from pytz import UTC

__version__ = "0.2.1"
__version__ = "0.2.2"

LASTMODIFIED_UNIXTIME = 0

Expand All @@ -19,4 +19,4 @@
LASTMODIFIED_UNIXTIME = Path("pseudovote/service.py").stat().st_mtime

LASTMODIFIED = datetime.utcfromtimestamp(LASTMODIFIED_UNIXTIME).replace(microsecond=0, tzinfo=UTC)
LASTMODIFIED_DATE = datetime.utcfromtimestamp(LASTMODIFIED_UNIXTIME).replace(tzinfo=UTC).date()
LASTMODIFIED_DATE = datetime.utcfromtimestamp(LASTMODIFIED_UNIXTIME).replace(tzinfo=UTC).date()

0 comments on commit 8ea0b33

Please sign in to comment.