Drop support for Python 3.7

Fix #1053
This commit is contained in:
Ran Benita
2024-04-03 18:04:32 +03:00
parent b6f5d2bd32
commit a790dc5d72
4 changed files with 3 additions and 6 deletions

View File

@@ -25,14 +25,13 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"execnet>=1.1",
"pytest>=6.2.0",