File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff 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 \
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ twilio==4.4.0
1010qrcode == 5.1
1111analytics-python == 1.0.3
1212osa == 0.1.6.6
13- google-api-python-client == 1.4.1
13+ google-api-python-client == 1.5.2
1414six == 1.9.0
1515uritemplate == 0.6
1616oauth2client == 1.4.11
@@ -29,3 +29,7 @@ mixpanel-query-py==0.1.7
2929Sendinblue == 2.0.2
3030GitPython == 2.0.5
3131Mako == 1.0.4
32+ sendgrid == 3.2.10
33+ python-telegram-bot == 5.0.0
34+ Jinja2 == 2.8
35+ wit == 4.1.0
Original file line number Diff line number Diff line change 11if __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 )
You can’t perform that action at this time.
0 commit comments