10000 Update requirements to include pytz. (see below) · MVReddy/python-api@efcc197 · GitHub
[go: up one dir, main page]

Skip to content

Commit efcc197

Browse files
committed
Update requirements to include pytz. (see below)
This is an *extremely* common module. I think including it shouldn’t be a problem.
1 parent 7a92bd9 commit efcc197

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@
77

88
## http request dependencies ##
99
requests==2.3.0
10+
11+
## python 2 to 3 compatibility ##
12+
six==1.8.0
13+
14+
## timezone definitions ##
15+
pytz==2014.9

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ def readme():
4040
'plotly/matplotlylib/mplexporter',
4141
'plotly/matplotlylib/mplexporter/renderers'],
4242
package_data={'plotly': ['graph_reference/*.json']},
43-
install_requires=['requests', 'six'],
43+
install_requires=['requests', 'six', 'pytz'],
4444
zip_safe=False)

0 commit comments

Comments
 (0)
0