"...git@developer.sourcefind.cn:tianlh/lightgbm-dcu.git" did not exist on "5e90255ee78bbee07d3a1afb01ffa22dfcfe9b6f"
Unverified Commit a3b9dae7 authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[python] Drop Python 3.5 support (#3395)

* Update .appveyor.yml

* Update .travis.yml

* Update .vsts-ci.yml

* Update main.yml

* Update setup.py
parent 571cad7e
...@@ -29,7 +29,6 @@ install: ...@@ -29,7 +29,6 @@ install:
- ps: >- - ps: >-
switch ($env:PYTHON_VERSION) { switch ($env:PYTHON_VERSION) {
"2.7" {$env:MINICONDA = "C:\Miniconda-x64"} "2.7" {$env:MINICONDA = "C:\Miniconda-x64"}
"3.5" {$env:MINICONDA = "C:\Miniconda35-x64"}
"3.6" {$env:MINICONDA = "C:\Miniconda36-x64"} "3.6" {$env:MINICONDA = "C:\Miniconda36-x64"}
"3.7" {$env:MINICONDA = "C:\Miniconda37-x64"} "3.7" {$env:MINICONDA = "C:\Miniconda37-x64"}
default {$env:MINICONDA = "C:\Miniconda37-x64"} default {$env:MINICONDA = "C:\Miniconda37-x64"}
......
...@@ -165,5 +165,5 @@ jobs: ...@@ -165,5 +165,5 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test] needs: [test]
steps: steps:
- name: note that all tests succeeded - name: Note that all tests succeeded
run: echo "🎉" run: echo "🎉"
...@@ -24,13 +24,13 @@ env: ...@@ -24,13 +24,13 @@ env:
- TASK=check-docs - TASK=check-docs
- TASK=mpi METHOD=source - TASK=mpi METHOD=source
- TASK=mpi METHOD=pip PYTHON_VERSION=3.7 - TASK=mpi METHOD=pip PYTHON_VERSION=3.7
- TASK=gpu METHOD=source PYTHON_VERSION=3.5 - TASK=gpu METHOD=source
- TASK=gpu METHOD=pip PYTHON_VERSION=3.6 - TASK=gpu METHOD=pip PYTHON_VERSION=3.6
matrix: matrix:
exclude: exclude:
- os: osx - os: osx
env: TASK=gpu METHOD=source PYTHON_VERSION=3.5 env: TASK=gpu METHOD=source
- os: osx - os: osx
env: TASK=gpu METHOD=pip PYTHON_VERSION=3.6 env: TASK=gpu METHOD=pip PYTHON_VERSION=3.6
- os: osx - os: osx
......
...@@ -30,7 +30,6 @@ jobs: ...@@ -30,7 +30,6 @@ jobs:
TASK: regular TASK: regular
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 3.5
bdist: bdist:
TASK: bdist TASK: bdist
PYTHON_VERSION: 3.7 PYTHON_VERSION: 3.7
...@@ -81,7 +80,6 @@ jobs: ...@@ -81,7 +80,6 @@ jobs:
PYTHON_VERSION: 3.7 PYTHON_VERSION: 3.7
sdist: sdist:
TASK: sdist TASK: sdist
PYTHON_VERSION: 3.5
bdist: bdist:
TASK: bdist TASK: bdist
steps: steps:
......
...@@ -302,7 +302,6 @@ if __name__ == "__main__": ...@@ -302,7 +302,6 @@ if __name__ == "__main__":
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'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', 'Programming Language :: Python :: 3.8',
......
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