From 841f9b8decb597f23325f8da4a8ef30af5bc87b3 Mon Sep 17 00:00:00 2001 From: Tao He Date: Mon, 25 Jan 2021 21:14:39 +0800 Subject: [PATCH] Drop python 3.5 support. --- .github/workflows/build-wheel.yml | 3 +-- docker/pypa/Dockerfile.manylinux1-wheel | 1 - setup.py | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-wheel.yml b/.github/workflows/build-wheel.yml index 964b63d4..4f87e687 100644 --- a/.github/workflows/build-wheel.yml +++ b/.github/workflows/build-wheel.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04, macos-10.15] - python: [cp35-cp35m, cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39] + python: [cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39] steps: - uses: actions/checkout@v2 @@ -72,7 +72,6 @@ jobs: run: | # setup python case "${{ matrix.python }}" in - ("cp35-cp35m") sudo conda create --quiet --yes -n buildwheel python=3.5 ;; ("cp36-cp36m") sudo conda create --quiet --yes -n buildwheel python=3.6 ;; ("cp37-cp37m") sudo conda create --quiet --yes -n buildwheel python=3.7 ;; ("cp38-cp38") sudo conda create --quiet --yes -n buildwheel python=3.8 ;; diff --git a/docker/pypa/Dockerfile.manylinux1-wheel b/docker/pypa/Dockerfile.manylinux1-wheel index 5c4b8d8e..3c5cf4d4 100644 --- a/docker/pypa/Dockerfile.manylinux1-wheel +++ b/docker/pypa/Dockerfile.manylinux1-wheel @@ -17,7 +17,6 @@ FROM docker.pkg.github.com/alibaba/libvineyard/vineyard-manylinux1:20201115 # target: docker.pkg.github.com/alibaba/libvineyard/vineyard-wheel # specify python version: -# - cp35-cp35m # - cp36-cp36m # - cp37-cp37m # - cp38-cp38 diff --git a/setup.py b/setup.py index 90e99c15..23557904 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,6 @@ def has_ext_modules(self): "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8",