Skip to content

Commit c58502d

Browse files
Add support for 3.13
1 parent d847a06 commit c58502d

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: ["3.10", "3.11", "3.12"]
42+
python-version: ["3.10", "3.11", "3.12", "3.13"]
4343
django-version: ["5.0", "5.1", "-main"]
4444

4545
steps:
@@ -75,7 +75,7 @@ jobs:
7575
strategy:
7676
fail-fast: false
7777
matrix:
78-
python-version: ["3.9", "3.10", "3.11", "3.12"]
78+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
7979
django-version: ["4.0", "4.1", "4.2"]
8080

8181
steps:

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
Version 2.7.0
5+
-------------
6+
7+
Other
8+
~~~~~
9+
10+
- CI now tests against python 3.13
11+
412
Version 2.6.0
513
-------------
614

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = [ "poetry-core>=1" ]
55

66
[tool.poetry]
77
name = "pylint-django"
8-
version = "2.6.0"
8+
version = "2.7.0"
99
readme = "README.rst"
1010
description = "A Pylint plugin to help Pylint understand the Django web framework"
1111
repository = "https://github.com/pylint-dev/pylint-django"
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2425
"Framework :: Django :: 2.2",
2526
"Framework :: Django :: 3",
2627
"Framework :: Django :: 3.0",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ envlist =
99
readme
1010
py{39}-django{22,30,31,32}
1111
py{39,310,311,312}-django{40,41,42}
12-
py{310,311,312}-django{50,51,-main}
12+
py{310,311,312,313}-django{50,51,-main}
1313

1414
requires =
1515
pip >=21.0.1
@@ -21,7 +21,7 @@ commands =
2121
django_not_installed: bash pylint_django/tests/test_django_not_installed.sh
2222
pylint: pylint pylint_django
2323
readme: bash -c "poetry build && twine check dist/*"
24-
py{38,39,310,311,312}-django{22,30,31,32,40,41,42,50}: bash scripts/test.sh --cov=pylint_django
24+
py{38,39,310,311,312,313}-django{22,30,31,32,40,41,42,50}: bash scripts/test.sh --cov=pylint_django
2525
clean: find . -type f -name '*.pyc' -delete
2626
clean: find . -type d -name __pycache__ -delete
2727
clean: rm -rf build/ .cache/ dist/ .eggs/ pylint_django.egg-info/ .tox/

0 commit comments

Comments
 (0)