Skip to content

Commit baae098

Browse files
authored
Merge pull request #54 from Syncano/add-libraries-chatbots
Add new packages, upgrade google-api-python-client
2 parents fd14c0d + 25605df commit baae098

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ RUN apt-get update && apt-get install -qqy \
2323
libjpeg-dev \
2424
python-dev \
2525
python3-dev \
26+
python-tk \
27+
python3-tk \
2628
python-numpy \
2729
python3-numpy \
2830
python-scipy \

requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ twilio==4.4.0
1010
qrcode==5.1
1111
analytics-python==1.0.3
1212
osa==0.1.6.6
13-
google-api-python-client==1.4.1
13+
google-api-python-client==1.5.2
1414
six==1.9.0
1515
uritemplate==0.6
1616
oauth2client==1.4.11
@@ -29,3 +29,7 @@ mixpanel-query-py==0.1.7
2929
Sendinblue==2.0.2
3030
GitPython==2.0.5
3131
Mako==1.0.4
32+
sendgrid==3.2.10
33+
python-telegram-bot==5.0.0
34+
Jinja2==2.8
35+
wit==4.1.0

test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
if __name__ == '__main__':
22
import pkgutil
3+
blacklist = ['winreg']
34
modules = (name for _, name, is_pkg in pkgutil.iter_modules()
4-
if is_pkg)
5+
if is_pkg and name not in blacklist)
56
map(__import__, modules)

0 commit comments

Comments
 (0)