Skip to content

Commit

Permalink
build(python): use optional dependencies instead of tests_require (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Jul 30, 2024
1 parent e5fef3f commit 1ac7fd0
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 @@ -18,9 +18,6 @@
readme = open("README.md").read()
history = open("CHANGELOG.md").read()

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

extras_require = {
"debug": [
Expand All @@ -39,7 +36,9 @@
"htcondor": [
"htcondor==9.0.17",
],
"tests": tests_require,
"tests": [
"pytest-reana>=0.95.0a2,<0.96.0",
],
"ssh": ["paramiko[gssapi]>=3.0.0"],
}

Expand Down Expand Up @@ -96,7 +95,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 1ac7fd0

Please sign in to comment.