Skip to content

Commit

Permalink
Update supported Python versions (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
johannfaouzi committed Oct 28, 2021
1 parent 61515d3 commit 4729b52
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
40 changes: 20 additions & 20 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python37:
python.version: '3.7'
Python39:
python.version: '3.9'

steps:
- task: UsePythonVersion@0
Expand All @@ -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.*'
Expand Down Expand Up @@ -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.*'
Expand All @@ -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.*'
Expand Down Expand Up @@ -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.*'
Expand Down Expand Up @@ -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.*'
Expand Down Expand Up @@ -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.*'
Expand Down
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 4729b52

Please sign in to comment.