Drop support for Django 2.x and Python 3.5

This commit is contained in:
medmunds
2022-08-29 13:10:14 -07:00
committed by Mike Edmunds
parent a4f50c4340
commit 3f05623a2f
7 changed files with 37 additions and 280 deletions

View File

@@ -57,7 +57,7 @@ setup(
license="BSD License",
packages=["anymail"],
zip_safe=False,
python_requires='>=3.5',
python_requires='>=3.6',
install_requires=["django>=2.0", "requests>=2.4.3"],
extras_require={
# This can be used if particular backends have unique dependencies.
@@ -84,7 +84,6 @@ setup(
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
@@ -95,9 +94,6 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",