We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1313df commit 0f0d885Copy full SHA for 0f0d885
.travis.yml
@@ -121,6 +121,8 @@ script:
121
- ci/script_single.sh
122
- ci/script_multi.sh
123
- ci/lint.sh
124
+ - echo "checking imports"
125
+ - python ci/check_imports.py
126
- echo "script done"
127
128
after_success:
scripts/check_imports.py renamed to ci/check_imports.py
@@ -3,14 +3,22 @@
3
"""
4
import sys
5
6
-
7
blacklist = {
+ 'bs4',
8
+ 'html5lib',
9
+ 'jinja2'
10
+ 'lxml',
11
'matplotlib',
12
'numexpr',
- 'xlsxwriter',
13
'openpyxl',
14
+ 'py',
15
+ 'pytest',
16
+ 's3fs',
17
+ 'scipy',
18
+ 'tables',
19
+ 'xlrd',
20
+ 'xlsxwriter',
21
'xlwt',
- 'numexpr',
22
}
23
24
0 commit comments