From 4729b52e41adeb0a1f9e2fd5573a1f5f4c7fb0e7 Mon Sep 17 00:00:00 2001 From: Johann Faouzi Date: Thu, 28 Oct 2021 10:15:58 +0200 Subject: [PATCH] Update supported Python versions (#116) --- README.md | 2 +- azure-pipelines.yml | 40 ++++++++++++++++++++-------------------- doc/changelog.rst | 2 +- doc/install.rst | 2 +- setup.py | 1 - 5 files changed, 23 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 958a4a7..be7726c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ thus pyts provides several tools to perform these transformations. pyts requires: -- Python (>= 3.6) +- Python (>= 3.7) - NumPy (>= 1.17.5) - SciPy (>= 1.3.0) - Scikit-Learn (>=0.22.1) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e6f2f03..1987739 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,8 +13,8 @@ jobs: vmImage: 'ubuntu-latest' strategy: matrix: - Python37: - python.version: '3.7' + Python39: + python.version: '3.9' steps: - task: UsePythonVersion@0 @@ -36,15 +36,15 @@ jobs: vmImage: 'ubuntu-latest' strategy: matrix: - Python36: - python.version: '3.6' + Python37: + python.version: '3.7' numpy.version: '1.17.5' scipy.version: '1.3.0' scikit-learn.version: '0.22.1' joblib.version: '0.12' numba.version: '0.48.0' - Python38: - python.version: '3.8' + Python39: + python.version: '3.9' numpy.version: '1.*' scipy.version: '1.*' scikit-learn.version: '0.*' @@ -73,8 +73,8 @@ jobs: vmImage: 'ubuntu-latest' strategy: matrix: - Python37: - python.version: '3.7' + Python38: + python.version: '3.8' numpy.version: '1.*' scipy.version: '1.*' scikit-learn.version: '0.*' @@ -101,15 +101,15 @@ jobs: vmImage: 'macOS-latest' strategy: matrix: - Python36: - python.version: '3.6' + Python37: + python.version: '3.7' numpy.version: '1.17.5' scipy.version: '1.3.0' scikit-learn.version: '0.22.1' joblib.version: '0.12' numba.version: '0.48.0' - Python38: - python.version: '3.8' + Python39: + python.version: '3.9' numpy.version: '1.*' scipy.version: '1.*' scikit-learn.version: '0.*' @@ -138,8 +138,8 @@ jobs: vmImage: 'macOS-latest' strategy: matrix: - Python37: - python.version: '3.7' + Python38: + python.version: '3.8' numpy.version: '1.*' scipy.version: '1.*' scikit-learn.version: '0.*' @@ -172,15 +172,15 @@ jobs: vmImage: 'windows-latest' strategy: matrix: - Python36: - python.version: '3.6' + Python37: + python.version: '3.7' numpy.version: '1.17.5' scipy.version: '1.3.0' scikit-learn.version: '0.22.1' joblib.version: '0.12' numba.version: '0.48.0' - Python38: - python.version: '3.8' + Python39: + python.version: '3.9' numpy.version: '1.*' scipy.version: '1.*' scikit-learn.version: '0.*' @@ -209,8 +209,8 @@ jobs: vmImage: 'windows-latest' strategy: matrix: - Python37: - python.version: '3.7' + Python38: + python.version: '3.8' numpy.version: '1.*' scipy.version: '1.*' scikit-learn.version: '0.*' diff --git a/doc/changelog.rst b/doc/changelog.rst index 6af46cd..a5ae718 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -7,7 +7,7 @@ Change Log Version 0.12.0 -------------- -- Add support for Python 3.9. +- Add support for Python 3.9 and drop support for Python 3.6. - Add the *Time Series Forest* algorithm implemented as :class:`pyts.classification.TimeSeriesForest`. diff --git a/doc/install.rst b/doc/install.rst index 8d67733..b8e370e 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -9,7 +9,7 @@ Dependencies pyts requires: -- Python (>= 3.6) +- Python (>= 3.7) - NumPy (>= 1.17.5) - SciPy (>= 1.3.0) - Scikit-Learn (>=0.22.1) diff --git a/setup.py b/setup.py index 28ebb8f..e8aa723 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ 'Operating System :: POSIX', 'Operating System :: Unix', 'Operating System :: MacOS', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9']