Skip to content

Commit

Permalink
Tweaks to the installation to see if this fixes the pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
markmcdowall committed Aug 2, 2018
1 parent 0020ba8 commit a0c7e69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mg_common/tool/bam_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# ------------------------------------------------------------------------------

# Object inheritance is required for py2 compatiblity
class bamUtils(object): # pylint: disable=invalid-name, useless-object-inheritance
class bamUtils(object): # pylint: disable=invalid-name,useless-object-inheritance
"""
Tool for handling bam files
"""
Expand Down
6 changes: 1 addition & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
pylint
pytest-mock
pysam
git+https://github.com/Multiscale-Genomics/mg-tool-api.git
ConfigParser
git+https://github.com/Multiscale-Genomics/mg-tool-api.git
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
packages=find_packages(),
include_package_data=True,
install_requires=[
'pytest', 'pytest-mock'
'pytest', 'pytest-mock', 'pylint', 'pysam', 'ConfigParser'
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest', 'pytest-mock', 'pysam'
'pytest', 'pytest-mock', 'pysam', 'pylint'
],
)

0 comments on commit a0c7e69

Please sign in to comment.