From f87c25954d34ce746c36cb4db2dd1667be0c3098 Mon Sep 17 00:00:00 2001 From: Heidi Tong Date: Wed, 26 May 2021 17:31:28 -0700 Subject: [PATCH] Drop python 3.5 support --- .appveyor.yml | 1 - .circleci/config.yml | 15 --------------- README.rst | 2 +- setup.py | 3 +-- 4 files changed, 2 insertions(+), 19 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 4f062bc1..7b0c2054 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,7 +4,6 @@ environment: # https://www.appveyor.com/docs/build-environment/#python - - PYTHON: "C:\\Python35-x64" - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" - PYTHON: "C:\\Python38-x64" diff --git a/.circleci/config.yml b/.circleci/config.yml index b817c5c9..29f022f6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,11 +44,6 @@ jobs: docker: - image: circleci/python:3.6 - test-3.5: - <<: *full-test-template - docker: - - image: circleci/python:3.5 - test-osx-3.9: &osx-tests-template macos: xcode: "12.2.0" @@ -109,12 +104,6 @@ jobs: PYTHON: 3.6.12 HOMEBREW_NO_AUTO_UPDATE: 1 - test-osx-3.5: - <<: *osx-tests-template - environment: - PYTHON: 3.5.10 - HOMEBREW_NO_AUTO_UPDATE: 1 - test-doctest: docker: - image: circleci/python:3.7-stretch # as of march 2019 RTD uses 3.7 @@ -240,12 +229,10 @@ workflows: - test-3.8 - test-3.7 - test-3.6 - - test-3.5 - test-osx-3.9 - test-osx-3.8 - test-osx-3.7 - test-osx-3.6 - - test-osx-3.5 - test-doctest deploy: @@ -270,11 +257,9 @@ workflows: - test-3.8 - test-3.7 - test-3.6 - - test-3.5 - test-osx-3.9 - test-osx-3.8 - test-osx-3.7 - test-osx-3.6 - - test-osx-3.5 - test-doctest - black-duck diff --git a/README.rst b/README.rst index 375ec0dc..5144797b 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Installation .. installation-start-marker -Compatible with Python 3.5+: +Compatible with Python 3.6+: .. code-block:: bash diff --git a/setup.py b/setup.py index 74c189bb..712848f1 100644 --- a/setup.py +++ b/setup.py @@ -59,14 +59,13 @@ 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', ] -python_requires = '>=3.5' +python_requires = '>=3.6' setup( name='dwave-ocean-sdk',