@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " pylint-pytest"
7- version = " 2.0.0a0 "
7+ version = " 2.0.0a1 "
88license = {file = " LICENSE" }
99description = " A Pylint plugin to suppress pytest-related false positives."
1010
@@ -24,11 +24,11 @@ classifiers = [
2424 " Topic :: Software Development :: Quality Assurance" ,
2525 " Programming Language :: Python" ,
2626 " Programming Language :: Python :: 3" ,
27- " Programming Language :: Python :: 3.8" ,
28- " Programming Language :: Python :: 3.9" ,
2927 " Programming Language :: Python :: 3.10" ,
3028 " Programming Language :: Python :: 3.11" ,
3129 " Programming Language :: Python :: 3.12" ,
30+ " Programming Language :: Python :: 3.13" ,
31+ " Programming Language :: Python :: 3.14" ,
3232 " Programming Language :: Python :: Implementation :: CPython" ,
3333 " Operating System :: OS Independent" ,
3434 " License :: OSI Approved :: MIT License" ,
@@ -39,9 +39,9 @@ keywords = [
3939 " plugin" ,
4040]
4141
42- requires-python = " >=3.8 "
42+ requires-python = " >= 3.10 "
4343dependencies = [
44- " pylint>=2,<4 " ,
44+ " pylint >=2, <5 " ,
4545 " pytest>=4.6" ,
4646]
4747
@@ -106,7 +106,7 @@ paths.source = [
106106profile = " black"
107107
108108[tool .mypy ]
109- python_version = " 3.8 "
109+ python_version = " 3.10 "
110110check_untyped_defs = true
111111explicit_package_bases = true
112112namespace_packages = true
@@ -148,8 +148,6 @@ fix = true
148148# (for docstrings, strings and comments in particular).
149149line-length = 100
150150
151- target-version = " py38"
152-
153151[tool .ruff .lint ]
154152select = [
155153 " E" , # pycodestyle
0 commit comments