Skip to content

Commit

Permalink
Merge pull request #190 from nyaruka/python3.12
Browse files Browse the repository at this point in the history
Support Python 3.12
  • Loading branch information
rowanseymour authored Jun 12, 2024
2 parents 8159900 + 4e6d5b4 commit 760a93e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
name: Test
strategy:
matrix:
python-version: ["3.10.x", "3.11.x"]
python-version: ["3.10.x", "3.11.x", "3.12.x"]
pg-version: ["14", "15"]
django-version: ["4.2.x", "5.0.x"]
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion test_runner/blog/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def test_messaging(self):
follow=True,
)

self.assertEquals(200, response.status_code)
self.assertEqual(200, response.status_code)
self.assertNotContains(response, "Your new post has been created.") # disabled

def test_message_tags(self):
Expand Down

0 comments on commit 760a93e

Please sign in to comment.