Skip to content

Commit

Permalink
fix dependency issue by narrowly specifying Python version (3.7.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
divyaramamoorthy committed Jun 20, 2022
1 parent c075d66 commit 87e3759
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@

setup(
name='mogp',
version='0.1.1',
version='0.1.2',
description='Mixture of Gaussian Processes Model for Sparse Longitudinal Data',
url='https://github.com/fraenkel-lab/mogp',
python_requires='>=3.6',
python_requires='3.7.3',
packages=['mogp'],
# package_data={'mogp': ['data/reference_model.pkl']},

install_requires=[
'GPy>=1.9.8,<1.10',
'scipy>=1.3.0',
'numpy>=1.16.4,<1.20',
'scikit-learn==0.21.1',
'sklearn>=0.0',
'matplotlib>=3.1.1'],
# install_requires=[
# 'GPy>=1.9.8,<1.10',
# 'scipy>=1.3.0',
# 'numpy>=1.16.4,<1.20',
# 'scikit-learn==0.21.1',
# 'sklearn>=0.0',
# 'matplotlib>=3.1.1'],

author='Divya Ramamoorthy',
author_email='[email protected]',
license='MIT'
)
)

0 comments on commit 87e3759

Please sign in to comment.