Skip to content

Commit

Permalink
build(python): use optional deps instead of tests_require (reanahub…
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Jul 30, 2024
1 parent d9db515 commit 668eee4
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,14 @@
readme = open("README.md").read()
history = open("CHANGELOG.md").read()

tests_require = [
"pytest-reana>=0.9.2,<0.10.0",
]

extras_require = {
"docs": [
"myst-parser",
"Sphinx>=1.5.1",
],
"tests": tests_require,
"tests": [
"pytest-reana>=0.9.2,<0.10.0",
],
"benchmark": [
"pandas>=1.1.5",
"matplotlib>=3.3.4",
Expand Down Expand Up @@ -77,7 +75,6 @@
python_requires=">=3.8",
extras_require=extras_require,
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
Expand Down

0 comments on commit 668eee4

Please sign in to comment.