From 5b1342c4d2aa6cae6ca9eaa37838fdc24afc4f6b Mon Sep 17 00:00:00 2001 From: "Efstathios Chatzikyriakidisgit config --global user.email stathis.chatzikyriakidis@medoid.ai" Date: Thu, 23 Jul 2020 10:52:35 +0300 Subject: [PATCH] Add latest dependencies in skrobot --- README.md | 6 ++---- RELEASE.md | 4 ++++ setup.py | 19 ++++++++++--------- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 9225a45..3924ef8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Python](https://img.shields.io/badge/python-3.6%20%7C%203.7-blue?style=plastic)](https://pypi.org/project/skrobot/) -[![PyPI](https://img.shields.io/badge/pypi_package-1.0.4-blue?style=plastic)](https://pypi.org/project/skrobot/) +[![Python](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-blue?style=plastic)](https://pypi.org/project/skrobot/) +[![PyPI](https://img.shields.io/badge/pypi_package-1.0.5-blue?style=plastic)](https://pypi.org/project/skrobot/) [![License](https://img.shields.io/badge/license-MIT-blue?style=plastic)](https://github.com/medoidai/skrobot/blob/master/LICENSE.txt) [![Status](https://img.shields.io/badge/status-stable-green?style=plastic)](https://pypi.org/project/skrobot/) @@ -182,8 +182,6 @@ Support, testing and features recommendation: * Add support in the module for multiclass, regression and multitarget problems -* Support Python 3.8 - * Build some notifiers (e.g., Slack, Trello and Discord) * Add Bayesian hyperparameter tuning support diff --git a/RELEASE.md b/RELEASE.md index bf5de85..6662ea5 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,7 @@ +# 1.0.5 + +* Support Python 3.8 + # 1.0.4 * PredictionTask class is added diff --git a/setup.py b/setup.py index 5cde517..d266da0 100644 --- a/setup.py +++ b/setup.py @@ -8,26 +8,26 @@ setup( name='skrobot', - version='1.0.4', + version='1.0.5', license='MIT', author="Medoid AI", author_email="info@medoid.ai", description="skrobot is a Python module for designing, running and tracking Machine Learning experiments / tasks. It is built on top of scikit-learn framework.", long_description=readme, platforms=['any'], - download_url='https://github.com/medoidai/skrobot/archive/1.0.4.tar.gz', + download_url='https://github.com/medoidai/skrobot/archive/1.0.5.tar.gz', long_description_content_type='text/markdown', url="https://github.com/medoidai/skrobot", python_requires='>=3.6', - install_requires=['scikit-learn==0.21.3', - 'joblib==0.13.2', - 'numpy==1.16.4', - 'pandas==0.24.2', - 'numpyencoder==0.1.0', - 'plotly==4.3.0', + install_requires=['scikit-learn==0.23.1', + 'joblib==0.16.0', + 'numpy==1.19.1', + 'pandas==1.0.5', + 'numpyencoder==0.2.0', + 'plotly==4.9.0', 'stringcase==1.2.0', 'scikit-plot==0.3.7', - 'matplotlib==3.1.0'], + 'matplotlib==3.3.0'], packages=find_packages(), classifiers=[ "Development Status :: 5 - Production/Stable", @@ -40,6 +40,7 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Environment :: Console"]