Skip to content

Commit

Permalink
MNT Fix install for testing (#1015)
Browse files Browse the repository at this point in the history
Installing [testing] now includes all required dev dependencies.
  • Loading branch information
muellerzr authored Aug 30, 2023
1 parent b8185cf commit 3641273
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
with open('requirements.txt') as f:
install_requires = [l.strip() for l in f]

with open('requirements-dev.txt') as f:
tests_require = [l.strip() for l in f]

python_requires = '>=3.8'

tests_require = [
'pytest',
'pytest-cov',
]
python_requires = '>=3.8'

docs_require = [
'Sphinx',
Expand Down

0 comments on commit 3641273

Please sign in to comment.