Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ RUN apt-get update && apt-get install -qqy \
libjpeg-dev \
python-dev \
python3-dev \
python-tk \
python3-tk \
python-numpy \
python3-numpy \
python-scipy \
Expand Down
6 changes: 5 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ twilio==4.4.0
qrcode==5.1
analytics-python==1.0.3
osa==0.1.6.6
google-api-python-client==1.4.1
google-api-python-client==1.5.2
six==1.9.0
uritemplate==0.6
oauth2client==1.4.11
Expand All @@ -29,3 +29,7 @@ mixpanel-query-py==0.1.7
Sendinblue==2.0.2
GitPython==2.0.5
Mako==1.0.4
sendgrid==3.2.10
python-telegram-bot==5.0.0
Jinja2==2.8
wit==4.1.0
3 changes: 2 additions & 1 deletion test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
if __name__ == '__main__':
import pkgutil
blacklist = ['winreg']
modules = (name for _, name, is_pkg in pkgutil.iter_modules()
if is_pkg)
if is_pkg and name not in blacklist)
map(__import__, modules)