Skip to content

Commit

Permalink
exclude autodocsumm 2.0 on py3.5, relates to Chilipp/autodocsumm#30
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Sep 17, 2020
1 parent e6193a8 commit fa38cde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@
doc_requires = [
"sphinx>=2.2,<2.4",
"sphinxcontrib-napoleon",
"autodocsumm",
"ipykernel",
"nbsphinx",
]

if sys.version_info[:2] < (3, 6):
test_requires += ["matplotlib>=3.0,<3.1", "rpy2>=3.0,<3.1"]
doc_requires += ["autodocsumm<2.0"]
else:
test_requires += ["matplotlib>=3.0", "rpy2>=3.0", "black"]
doc_requires += ["autodocsumm"]

version_py = os.path.join(os.path.dirname(__file__), "scprep", "version.py")
version = open(version_py).read().strip().split("=")[-1].replace('"', "").strip()
Expand Down

0 comments on commit fa38cde

Please sign in to comment.