Skip to content

Commit

Permalink
Merge pull request #3 from null-none/master
Browse files Browse the repository at this point in the history
1.0.3
  • Loading branch information
null-none authored Nov 8, 2024
2 parents e7103c1 + e678160 commit d1e9c16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion econt/helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def next_working_day(date):
param = datetime.datetime.strptime(date, "%Y-%m-%d")
# Monday - 0
# Tueday - 1
# ...
# Wednesday - 2
# Thursday - 3
# Friday - 4
# Saturday - 5
if param.weekday() == 5:
param += datetime.timedelta(days=2)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="econt",
version="1.0.2",
version="1.0.3",
author="Dmitry Kalinin",
packages=["econt"],
url="https://github.com/lesthetique-store/econt",
Expand Down

0 comments on commit d1e9c16

Please sign in to comment.