Skip to content

Commit 2ec1f0a

Browse files
committed
requirement: Added pytz 2019.3 for displaying local time in user info
The pytz library is used for timezone calculations. In our case it will be used to fetch the local time of a user given his/her local timezone. The standard time library can't be used.
1 parent 8e067b9 commit 2ec1f0a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ urwid-readline = "==0.10"
1111
beautifulsoup4 = "==4.6.0"
1212
lxml = "==4.2.3"
1313
mypy_extensions = ">=0.4"
14+
pytz = "==2019.3"
1415

1516
[dev-packages]
1617
pytest = "==5.3.5"

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ gitlint==0.10.0
1010
mypy==0.740
1111
isort==4.3.21
1212
emoji==0.5.0
13+
pytz==2019.3
1314
urwid_readline==0.10
1415
beautifulsoup4==4.6.0
1516
lxml==4.2.3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,6 @@ def long_description():
100100
'beautifulsoup4==4.6.0',
101101
'lxml==4.2.3',
102102
'mypy_extensions>=0.4',
103+
'pytz==2019.3'
103104
],
104105
)

0 commit comments

Comments
 (0)