Unverified Commit 6c19539e authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[python][ci] start to support Python 3.8 (#2713)

* start to support Python 3.8

* update configs

* hotfix
parent be591c84
...@@ -12,7 +12,7 @@ osx_image: xcode11.3 ...@@ -12,7 +12,7 @@ osx_image: xcode11.3
env: env:
global: # default values global: # default values
- PYTHON_VERSION=3.7 - PYTHON_VERSION=3.8
matrix: matrix:
- TASK=regular PYTHON_VERSION=3.6 - TASK=regular PYTHON_VERSION=3.6
- TASK=sdist PYTHON_VERSION=2.7 - TASK=sdist PYTHON_VERSION=2.7
...@@ -21,7 +21,7 @@ env: ...@@ -21,7 +21,7 @@ env:
- TASK=lint - TASK=lint
- TASK=check-docs - TASK=check-docs
- TASK=mpi METHOD=source - TASK=mpi METHOD=source
- TASK=mpi METHOD=pip - TASK=mpi METHOD=pip PYTHON_VERSION=3.7
- TASK=gpu METHOD=source PYTHON_VERSION=3.5 - TASK=gpu METHOD=source PYTHON_VERSION=3.5
- TASK=gpu METHOD=pip PYTHON_VERSION=3.6 - TASK=gpu METHOD=pip PYTHON_VERSION=3.6
- TASK=r-package - TASK=r-package
......
...@@ -6,7 +6,7 @@ trigger: ...@@ -6,7 +6,7 @@ trigger:
include: include:
- v* - v*
variables: variables:
PYTHON_VERSION: 3.7 PYTHON_VERSION: 3.8
CONDA_ENV: test-env CONDA_ENV: test-env
resources: resources:
containers: containers:
...@@ -31,7 +31,7 @@ jobs: ...@@ -31,7 +31,7 @@ jobs:
PYTHON_VERSION: 3.5 PYTHON_VERSION: 3.5
bdist: bdist:
TASK: bdist TASK: bdist
PYTHON_VERSION: 3.6 PYTHON_VERSION: 3.7
inference: inference:
TASK: if-else TASK: if-else
mpi_source: mpi_source:
...@@ -80,7 +80,7 @@ jobs: ...@@ -80,7 +80,7 @@ jobs:
matrix: matrix:
regular: regular:
TASK: regular TASK: regular
PYTHON_VERSION: 3.6 PYTHON_VERSION: 3.7
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 3.5 PYTHON_VERSION: 3.5
...@@ -121,13 +121,12 @@ jobs: ...@@ -121,13 +121,12 @@ jobs:
matrix: matrix:
regular: regular:
TASK: regular TASK: regular
PYTHON_VERSION: 3.7 PYTHON_VERSION: 3.6
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 2.7 PYTHON_VERSION: 2.7
bdist: bdist:
TASK: bdist TASK: bdist
PYTHON_VERSION: 3.5
steps: steps:
- powershell: | - powershell: |
Write-Host "##vso[task.prependpath]$env:CONDA\Scripts" Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
......
...@@ -304,4 +304,5 @@ if __name__ == "__main__": ...@@ -304,4 +304,5 @@ if __name__ == "__main__":
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence']) 'Topic :: Scientific/Engineering :: Artificial Intelligence'])
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment