From 794c1f84fb0a012734118e8ece29c20bc765cb5d Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 5 Mar 2023 16:52:07 +0100 Subject: [PATCH] Drop support for python 3.6 --- .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 4b82fa58..fa6b760b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', pypy-3.7, pypy-3.8, pypy-3.9] + python-version: ['3.7', '3.8', '3.9', '3.10', pypy-3.7, pypy-3.8, pypy-3.9] exclude: - os: windows-latest python-version: pypy-3.7 diff --git a/setup.py b/setup.py index 7e142997..5836549f 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ setup( install_requires=install_requires, extras_require={"test": test_requires, "bcrypt": bcrypt_requires}, keywords=["calendar", "addressbook", "CalDAV", "CardDAV"], - python_requires=">=3.6.0", + python_requires=">=3.7.0", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", @@ -63,7 +63,6 @@ setup( "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",