From 14d458e38c7f52725e92237f8dc6ccddb9a0bbb9 Mon Sep 17 00:00:00 2001 From: Friedrich Date: Sat, 8 May 2021 22:56:18 +0200 Subject: [PATCH] Drop support for Python 3.5 --- .github/workflows/test.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a2cc0e..d87b02a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', 'pypy3'] + python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy3'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index eb06618..45cbd3a 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ 'pytest-runner', ], version=version, - python_requires='~=3.5', + python_requires='~=3.6', classifiers=[ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", @@ -42,7 +42,6 @@ "Operating System :: POSIX :: Linux", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: SunOS/Solaris", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8",