diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a5961dd92385be4a5208d760053a012ff7b303de..dee6d6491c1b7493f0366f96001baf71f06f77cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.4, 3.5, 3.6, 3.7] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 8498ebdd12a402923751b16123d5eced52c873d3..e74c2e313758c197ea15aed4972de2086593ebad 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -82,7 +82,7 @@ Before you submit a pull request, check that it meets these guidelines: 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check +3. The pull request should work for Python 2.7, 3.5, 3.6, 3.7 and 3.8, and for PyPy. Check https://travis-ci.org/ageitgey/face_recognition/pull_requests and make sure that the tests pass for all supported Python versions. diff --git a/setup.py b/setup.py index 483d596a20f096c2692c5c1c5124cc59fbee30b3..86087afe4af827ce551a8428434d8014925dbd0b 100644 --- a/setup.py +++ b/setup.py @@ -55,10 +55,10 @@ setup( "Programming Language :: Python :: 2", 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], test_suite='tests', tests_require=test_requirements diff --git a/tox.ini b/tox.ini index 96f7891543648b98a6b302bb00c49cb6da454ed5..ad181d22bb2745f010744c258fb54acd6c78a6f2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,20 +1,20 @@ [tox] envlist = py27 - py34 py35 py36 py37 + py38 flake8 [gh-actions] python = 2.7: py27, flake8 - 3.4: py34, flake8 3.5: py35, flake8 3.6: py36, flake8 3.7: py37, flake8 + 3.8: py38, flake8 [testenv]