Skip to content

Commit

Permalink
exclude rpy2==3.1 for python3.5 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgigante committed Sep 15, 2019
1 parent 89980d2 commit 3070a9e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
'fcsparser',
'tables',
'h5py',
'rpy2>=3.0',
'coverage',
'coveralls',
'parameterized',
Expand All @@ -33,9 +32,9 @@
if sys.version_info[:2] < (3, 5):
raise RuntimeError("Python version >=3.5 required.")
elif sys.version_info[:2] < (3, 6):
test_requires += ['matplotlib>=3.0,<3.1']
test_requires += ['matplotlib>=3.0,<3.1', 'rpy2>=3.0,<3.1']
else:
test_requires += ['matplotlib>=3.0']
test_requires += ['matplotlib>=3.0', 'rpy2>=3.0']

version_py = os.path.join(os.path.dirname(
__file__), 'scprep', 'version.py')
Expand All @@ -47,7 +46,7 @@
setup(name='scprep',
version=version,
description='scprep',
author='Jay Stanley, Scott Gigante, and Daniel Burkhardt, Krishnaswamy Lab, Yale University',
author='Scott Gigante, Daniel Burkhardt and Jay Stanley, Yale University',
author_email='krishnaswamylab@gmail.com',
packages=find_packages(),
license='GNU General Public License Version 2',
Expand Down

0 comments on commit 3070a9e

Please sign in to comment.