Skip to content

Commit

Permalink
Merge pull request #209 in SAT/pbcore from feature/TAK-694-remove-pyt…
Browse files Browse the repository at this point in the history
…est-runner to develop

* commit 'cd27c1f15c1798d5391d6df0113a29b63496f9b8':
  Bump to 2.1.2
  Remove pointless pytest-runner dependency
  • Loading branch information
pb-dseifert committed May 6, 2020
2 parents 418a33d + cd27c1f commit 0c5fc55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ doctest:
cd doc && make doctest

unit-test:
python setup.py test
pytest
sed -i -e 's@filename="@filename="./@g' coverage.xml

test: doctest unit-test
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='pbcore',
version='2.1.1',
version='2.1.2',
author='Pacific Biosciences',
author_email='[email protected]',
description='A Python library for reading and writing PacBio® data files',
Expand All @@ -26,15 +26,12 @@
exclude_package_data={'pbcore.data': ['Makefile']},
zip_safe=False,
entry_points={'console_scripts': ['.open = pbcore.io.opener:entryPoint']},
setup_requires=[
'pytest-runner',
],
install_requires=[
'biopython >= 1.74',
'numpy >= 1.17',
'pysam >= 0.15.1',
],
test_requires=test_deps,
tests_require=test_deps,
extras_require={'test': test_deps},
python_requires='>=3.7',
)

0 comments on commit 0c5fc55

Please sign in to comment.