Skip to content

Commit 8ae6881

Browse files
Add support for python 3.13 in the github workflow
1 parent 9ef9369 commit 8ae6881

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.12"]
15+
python-version: ["3.13"]
1616
toxenv: [django_not_installed, ruff, pylint, readme]
1717

1818
steps:
@@ -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.2", "-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.2"]
8080

8181
steps:
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
strategy:
129129
matrix:
130-
python-version: ["3.12"]
130+
python-version: ["3.13"]
131131

132132
steps:
133133
- uses: actions/checkout@v4

pylint_django/tests/input/external_factory_boy_noerror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Meta:
3636
class BookTestCase(test.LiveServerTestCase):
3737
serialized_rollback = True
3838

39-
def _fixture_setup(self):
39+
def _fixture_setup(self): # pylint: disable=arguments-differ
4040
super()._fixture_setup()
4141
self.book = BookFactory()
4242
_author = AuthorFactory()

0 commit comments

Comments
 (0)