Unverified Commit 14cc5c05 authored by moto's avatar moto Committed by GitHub
Browse files

Stop build binary for Python3.5 (#577)

parent 33414c74
......@@ -237,9 +237,6 @@ workflows:
build:
jobs:
- circleci_consistency
- binary_linux_wheel:
name: binary_linux_wheel_py3.5
python_version: '3.5'
- binary_linux_wheel:
name: binary_linux_wheel_py3.6
python_version: '3.6'
......@@ -249,9 +246,6 @@ workflows:
- binary_linux_wheel:
name: binary_linux_wheel_py3.8
python_version: '3.8'
- binary_macos_wheel:
name: binary_macos_wheel_py3.5
python_version: '3.5'
- binary_macos_wheel:
name: binary_macos_wheel_py3.6
python_version: '3.6'
......@@ -261,9 +255,6 @@ workflows:
- binary_macos_wheel:
name: binary_macos_wheel_py3.8
python_version: '3.8'
- binary_linux_conda:
name: binary_linux_conda_py3.5
python_version: '3.5'
- binary_linux_conda:
name: binary_linux_conda_py3.6
python_version: '3.6'
......@@ -273,9 +264,6 @@ workflows:
- binary_linux_conda:
name: binary_linux_conda_py3.8
python_version: '3.8'
- binary_macos_conda:
name: binary_macos_conda_py3.5
python_version: '3.5'
- binary_macos_conda:
name: binary_macos_conda_py3.6
python_version: '3.6'
......@@ -292,28 +280,6 @@ workflows:
nightly:
jobs:
- circleci_consistency
- binary_linux_wheel:
filters:
branches:
only: nightly
name: nightly_binary_linux_wheel_py3.5
python_version: '3.5'
- binary_wheel_upload:
context: org-member
filters:
branches:
only: nightly
name: nightly_binary_linux_wheel_py3.5_upload
requires:
- nightly_binary_linux_wheel_py3.5
- smoke_test_linux_pip:
filters:
branches:
only: nightly
name: nightly_binary_linux_wheel_py3.5_smoke_test_pip
python_version: '3.5'
requires:
- nightly_binary_linux_wheel_py3.5_upload
- binary_linux_wheel:
filters:
branches:
......@@ -380,20 +346,6 @@ workflows:
python_version: '3.8'
requires:
- nightly_binary_linux_wheel_py3.8_upload
- binary_macos_wheel:
filters:
branches:
only: nightly
name: nightly_binary_macos_wheel_py3.5
python_version: '3.5'
- binary_wheel_upload:
context: org-member
filters:
branches:
only: nightly
name: nightly_binary_macos_wheel_py3.5_upload
requires:
- nightly_binary_macos_wheel_py3.5
- binary_macos_wheel:
filters:
branches:
......@@ -436,28 +388,6 @@ workflows:
name: nightly_binary_macos_wheel_py3.8_upload
requires:
- nightly_binary_macos_wheel_py3.8
- binary_linux_conda:
filters:
branches:
only: nightly
name: nightly_binary_linux_conda_py3.5
python_version: '3.5'
- binary_conda_upload:
context: org-member
filters:
branches:
only: nightly
name: nightly_binary_linux_conda_py3.5_upload
requires:
- nightly_binary_linux_conda_py3.5
- smoke_test_linux_conda:
filters:
branches:
only: nightly
name: nightly_binary_linux_conda_py3.5_smoke_test_conda
python_version: '3.5'
requires:
- nightly_binary_linux_conda_py3.5_upload
- binary_linux_conda:
filters:
branches:
......@@ -524,20 +454,6 @@ workflows:
python_version: '3.8'
requires:
- nightly_binary_linux_conda_py3.8_upload
- binary_macos_conda:
filters:
branches:
only: nightly
name: nightly_binary_macos_conda_py3.5
python_version: '3.5'
- binary_conda_upload:
context: org-member
filters:
branches:
only: nightly
name: nightly_binary_macos_conda_py3.5_upload
requires:
- nightly_binary_macos_conda_py3.5
- binary_macos_conda:
filters:
branches:
......
......@@ -23,7 +23,7 @@ def workflows(prefix='', upload=False, filter_branch=None, indentation=6):
w = []
for btype in ["wheel", "conda"]:
for os_type in ["linux", "macos"]:
for python_version in ["3.5", "3.6", "3.7", "3.8"]:
for python_version in ["3.6", "3.7", "3.8"]:
w += workflow_pair(btype, os_type, python_version, filter_branch, prefix, upload)
return indent(indentation, w)
......
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