Skip to content

Commit a4a0a85

Browse files
authored
Merge pull request #4 from dabercro/fix-errors
Minor changes
2 parents 1fd079d + d1b09d0 commit a4a0a85

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: python
2-
cache: pip
32
python: 2.7
43
dist: trusty
54
services:
@@ -8,4 +7,4 @@ env: TMPDIR=$PWD/tmp
87
install:
98
- python setup.py install
109
script:
11-
- opsspace-test
10+
- package=workflowwebtools opsspace-test

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
'templates/*']
1919
},
2020
install_requires=[
21-
'cmstoolbox',
21+
'cmstoolbox>=0.11.3',
22+
'more-itertools<6.0.0',
2223
'cherrypy<18.0.0',
2324
'mako',
2425
'numpy>=1.6.1',

workflowwebtools/procedures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
import re
4747
import textwrap
4848

49-
from tabulate import tabulate
49+
from tabulate import tabulate # pylint: disable=import-error
5050

5151
#
5252
# These are the procedures listed on the WTC twiki:

workflowwebtools/workflowinfo.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#pylint: skip-file
2+
13
"""
24
Module containing and returning information about workflows.
35

workflowwebtools/workflowtools.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# pylint: skip-file
2+
13
"""
24
Defines the class that runs the server
35
"""

0 commit comments

Comments
 (0)