Skip to content

Commit

Permalink
chore: Remove temporary pin on pydantic (ietf-tools#5911)
Browse files Browse the repository at this point in the history
* chore: Remove temporary pin on pydantic

* test: Guarantee ordering of sessions in test

Should fix an intermittent test failure.
  • Loading branch information
jennifer-richards authored Jul 5, 2023
1 parent 60dc602 commit 09f3477
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion ietf/secr/sreq/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def test_edit(self):
self.assertRedirects(r, redirect_url)

# Check whether updates were stored in the database
sessions = Session.objects.filter(meeting=meeting, group=mars)
sessions = Session.objects.filter(meeting=meeting, group=mars).order_by("id") # order to match edit() view
self.assertEqual(len(sessions), 2)
session = sessions[0]

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,3 @@ Unidecode>=1.3.4
weasyprint>=59
xml2rfc>=3.12.4
xym>=0.6,<1.0
pydantic<2 # Temporary pin until inflect can catch up.

0 comments on commit 09f3477

Please sign in to comment.