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 e406a59 commit 6952b62
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,15 @@
readme = open("README.md").read()
history = open("CHANGELOG.md").read()

tests_require = [
"pytest-reana>=0.95.0a2,<0.96.0",
]


extras_require = {
"docs": [
"myst-parser",
"Sphinx>=1.5.1",
"sphinx-rtd-theme>=0.1.9",
],
"tests": tests_require,
"tests": [
"pytest-reana>=0.95.0a2,<0.96.0",
],
"kubernetes": [
"kubernetes>=22.0.0,<23.0.0",
],
Expand Down Expand Up @@ -101,7 +98,6 @@
python_requires=">=3.8",
install_requires=install_requires,
extras_require=extras_require,
tests_require=tests_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
Expand Down

0 comments on commit 6952b62

Please sign in to comment.