diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c70cf6d..4369ed9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,11 @@ jobs: build: runs-on: ${{ matrix.platform }} strategy: - max-parallel: 4 + max-parallel: 3 matrix: platform: - ubuntu-latest - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index 83d6841..477fe8b 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -30,7 +30,6 @@ PROJECT_CLASSIFIERS = [ 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', diff --git a/tox.ini b/tox.ini index 1cb3c1f..437ed1a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = build, py35, py36, py37, py38, lint +envlist = build, py36, py37, py38, lint skip_missing_interpreters = True skipsdist = True