Skip to content

Commit b9367f8

Browse files
Support for python 3.12, 3.13, django 5.1, pylint 3.0+, remove python 3.7, 3.8
1 parent a5b8428 commit b9367f8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ classifiers = [
1717
"Operating System :: Unix",
1818
"Topic :: Software Development :: Quality Assurance",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2525
"Framework :: Django :: 2.2",
2626
"Framework :: Django :: 3",
2727
"Framework :: Django :: 3.0",
@@ -32,6 +32,7 @@ classifiers = [
3232
"Framework :: Django :: 4.1",
3333
"Framework :: Django :: 4.2",
3434
"Framework :: Django :: 5.0",
35+
"Framework :: Django :: 5.1",
3536
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
3637
]
3738
keywords = [ "pylint", "django", "plugin" ]
@@ -42,9 +43,9 @@ include = [ "pylint_django/LICENSE" ]
4243
exclude = [ "**/tests/**", "**/testutils.py", "**/tests.py" ]
4344

4445
[tool.poetry.dependencies]
45-
python = ">=3.8,<4.0"
46+
python = ">=3.9,<4.0"
4647
pylint-plugin-utils = ">=0.8"
47-
pylint = ">=2.0,<4"
48+
pylint = ">=3.0,<4"
4849
Django = { version = ">=2.2", optional = true }
4950

5051
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)