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

[python] Start supporting Python 3.9 (#3693)

* start supporting Python 3.9

* Update .vsts-ci.yml

* Update .vsts-ci.yml

* Update .appveyor.yml

* Update .vsts-ci.yml

* Update .appveyor.yml

* fixed conflicts

* continue
parent 0c42cb40
...@@ -25,13 +25,13 @@ jobs: ...@@ -25,13 +25,13 @@ jobs:
matrix: matrix:
include: include:
- method: source - method: source
python_version: 3.6 python_version: 3.7
cuda_version: "11.2.0" cuda_version: "11.2.0"
- method: pip - method: pip
python_version: 3.7 python_version: 3.8
cuda_version: "10.0" cuda_version: "10.0"
- method: wheel - method: wheel
python_version: 3.8 python_version: 3.9
cuda_version: "9.0" cuda_version: "9.0"
steps: steps:
- name: Setup or update software on host machine - name: Setup or update software on host machine
......
...@@ -26,7 +26,7 @@ jobs: ...@@ -26,7 +26,7 @@ jobs:
python_version: 3.6 python_version: 3.6
- os: macOS-latest - os: macOS-latest
task: sdist task: sdist
python_version: 3.8 python_version: 3.9
- os: macOS-latest - os: macOS-latest
task: bdist task: bdist
python_version: 3.8 python_version: 3.8
...@@ -36,7 +36,7 @@ jobs: ...@@ -36,7 +36,7 @@ jobs:
- os: macOS-latest - os: macOS-latest
task: mpi task: mpi
method: source method: source
python_version: 3.8 python_version: 3.9
- os: macOS-latest - os: macOS-latest
task: mpi task: mpi
method: pip method: pip
......
...@@ -15,7 +15,7 @@ env: ...@@ -15,7 +15,7 @@ env:
CONDA_ENV: test-env CONDA_ENV: test-env
GITHUB_ACTIONS: 'true' GITHUB_ACTIONS: 'true'
OS_NAME: 'linux' OS_NAME: 'linux'
PYTHON_VERSION: 3.8 PYTHON_VERSION: 3.9
jobs: jobs:
test: test:
......
...@@ -9,7 +9,7 @@ pr: ...@@ -9,7 +9,7 @@ pr:
- master - master
variables: variables:
AZURE: 'true' AZURE: 'true'
PYTHON_VERSION: 3.8 PYTHON_VERSION: 3.9
CONDA_ENV: test-env CONDA_ENV: test-env
resources: resources:
containers: containers:
...@@ -35,14 +35,15 @@ jobs: ...@@ -35,14 +35,15 @@ jobs:
TASK: regular TASK: regular
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 3.7
bdist: bdist:
TASK: bdist TASK: bdist
PYTHON_VERSION: 3.7
inference: inference:
TASK: if-else TASK: if-else
mpi_source: mpi_source:
TASK: mpi TASK: mpi
METHOD: source METHOD: source
PYTHON_VERSION: 3.8
gpu_source: gpu_source:
TASK: gpu TASK: gpu
METHOD: source METHOD: source
...@@ -89,6 +90,7 @@ jobs: ...@@ -89,6 +90,7 @@ jobs:
TASK: sdist TASK: sdist
bdist: bdist:
TASK: bdist TASK: bdist
PYTHON_VERSION: 3.8
inference: inference:
TASK: if-else TASK: if-else
mpi_source: mpi_source:
...@@ -97,7 +99,7 @@ jobs: ...@@ -97,7 +99,7 @@ jobs:
mpi_pip: mpi_pip:
TASK: mpi TASK: mpi
METHOD: pip METHOD: pip
PYTHON_VERSION: 3.7 PYTHON_VERSION: 3.8
mpi_wheel: mpi_wheel:
TASK: mpi TASK: mpi
METHOD: wheel METHOD: wheel
...@@ -151,6 +153,7 @@ jobs: ...@@ -151,6 +153,7 @@ jobs:
PYTHON_VERSION: 3.7 PYTHON_VERSION: 3.7
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 3.8
bdist: bdist:
TASK: bdist TASK: bdist
swig: swig:
...@@ -187,6 +190,7 @@ jobs: ...@@ -187,6 +190,7 @@ jobs:
PYTHON_VERSION: 3.6 PYTHON_VERSION: 3.6
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 3.8
bdist: bdist:
TASK: bdist TASK: bdist
swig: swig:
......
...@@ -374,4 +374,5 @@ if __name__ == "__main__": ...@@ -374,4 +374,5 @@ if __name__ == "__main__":
'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', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'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