Skip to content

Commit

Permalink
Merge pull request #130 from hhtong/drop-py35
Browse files Browse the repository at this point in the history
Drop python 3.5 support
  • Loading branch information
randomir authored May 27, 2021
2 parents 798e35c + f87c259 commit 5b135c5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 19 deletions.
1 change: 0 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
15 changes: 0 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Installation

.. installation-start-marker
Compatible with Python 3.5+:
Compatible with Python 3.6+:

.. code-block:: bash
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 5b135c5

Please sign in to comment.