From 06909964c3ad2f76dd0f474543e65bb17a520e3d Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 19 May 2024 15:00:56 +0200 Subject: [PATCH] Drop support for Python 3.5 We don't have an easy way to test with Python 3.5 any more. --- .github/workflows/test.yml | 2 +- setup.py | 1 - tox.ini | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8409a9ee..33a0f978 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.5, 3.6, pypy2.7] + python-version: [3.6, pypy2.7] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index c938536f..6cbb31d0 100755 --- a/setup.py +++ b/setup.py @@ -65,7 +65,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - '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 5c28653f..b70a3d1e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,35,36,37,38,39,310,311,312,py,py3},flake8,docs,headers +envlist = py{27,36,37,38,39,310,311,312,py,py3},flake8,docs,headers skip_missing_interpreters = true [testenv]