From b45cc29aa0a8dfb90653ee4a68b0fb72b71f198e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Pe=C4=8Dnik?= Date: Tue, 1 Dec 2020 19:18:22 +0100 Subject: [PATCH 1/2] try python 3.7 --- .travis.yml | 1 + README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 61320ef..0db06ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python python: +- 3.7 - 3.8 before_install: - pip install poetry diff --git a/README.md b/README.md index e710a8c..d0a5527 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The NiaAML framework allows you not only to run full pipeline optimization, but * **Free software:** MIT license * **Documentation:** https://niaaml.readthedocs.io/en/latest/ -* **Python versions:** 3.8.x +* **Python versions:** 3.7.x, 3.8.x ## Installation diff --git a/pyproject.toml b/pyproject.toml index 865798b..72ac774 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ include = [ ] [tool.poetry.dependencies] -python = "^3.8" +python = "^3.7" numpy = "^1.19.1" scikit-learn = "^0.23.2" NiaPy = "^2.0.0rc11" From 268308129961edf8583029b5b720196d89829e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Pe=C4=8Dnik?= Date: Tue, 1 Dec 2020 19:31:15 +0100 Subject: [PATCH 2/2] version raised to 0.1.3a1 [ci skip] --- niaaml/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/niaaml/__init__.py b/niaaml/__init__.py index 6c29d5f..6ae147c 100644 --- a/niaaml/__init__.py +++ b/niaaml/__init__.py @@ -27,4 +27,4 @@ ] __project__ = 'niaaml' -__version__ = '0.1.2' +__version__ = '0.1.3a1' diff --git a/pyproject.toml b/pyproject.toml index 72ac774..f9d6e44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "NiaAML" -version = "0.1.2" +version = "0.1.3a1" description = "Python automated machine learning framework." license = "MIT" authors = ["Luka Pečnik ", "Iztok Fister Jr. "]