-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix dependency issue by narrowly specifying Python version (3.7.3)
- Loading branch information
1 parent
c075d66
commit 87e3759
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
) | ||
) |