Skip to content

Commit

Permalink
added missing comma to install_requires; updated version number for r…
Browse files Browse the repository at this point in the history
…elease
  • Loading branch information
rlaboulaye committed Jan 25, 2019
1 parent c6c2762 commit 20bb15b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

__version__ = '0.4.9'
__version__ = '0.5.0'

setup(
name = 'metalearn',
Expand All @@ -13,10 +13,10 @@
download_url = 'https://github.com/byu-dml/metalearn/archive/{}.tar.gz'.format(__version__),
keywords = ['metalearning', 'machine learning', 'metalearn'],
install_requires = [
'numpy<=1.15.2'
'numpy<=1.15.2',
'scipy<=1.1.0',
'scikit-learn<=0.20.0',
'pandas<=0.23.4,>=0.21.0',
'scipy<=1.1.0'
'pandas<=0.23.4,>=0.21.0'
],
classifiers = [
'Programming Language :: Python :: 3.6'
Expand Down

0 comments on commit 20bb15b

Please sign in to comment.