Skip to content

Commit

Permalink
setup config
Browse files Browse the repository at this point in the history
  • Loading branch information
marcmaxson committed Aug 5, 2019
2 parents ff521f7 + af9a529 commit a4e9312
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- run:
command: |
pip install pipenv
pipenv install --dev
pip install -e .
pipenv install --dev --skip-lock
pipenv install -e . --skip-lock
# This ^^^ installs all the regular required packages and those listed in the dev section of `extras_require` in setup.py.
# pytest recommends this: install your package in "editable" mode by running this from the same directory.
- save_cache:
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ extension-pkg-whitelist = numpy
function-naming-style = snake_case
max-line-length = 120
load-plugins = pylint.extensions.bad_builtin,pylint.extensions.check_elif,pylint.extensions.comparetozero,pylint.extensions.emptystring,pylint.extensions.redefined_variable_type

[coverage:run]
omit=*/site-packages/*,*/tests/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='methQC',
version='0.2.3',
version='0.2.4',
description="""Quality Control (QC), Visualization/plotting, and postprocessing software for Illumina methylation array data.
See https://life-epigenetics-methqc.readthedocs-hosted.com/en/latest/ for full documentation and examples.""",
long_description=open('README.md').read(),
Expand Down

0 comments on commit a4e9312

Please sign in to comment.