From 364127331c94c6e5dfc28c4c815ee14946b8fe8a Mon Sep 17 00:00:00 2001 From: Zach Mueller Date: Wed, 30 Aug 2023 11:48:13 -0400 Subject: [PATCH] MNT Fix install for testing (#1015) Installing [testing] now includes all required dev dependencies. --- setup.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index fc16cab3c..2de0f3b8e 100644 --- a/setup.py +++ b/setup.py @@ -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',