From a80618a2dfe60f6fc5f99bfc0aa68e6a6fbf369a Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 16 Sep 2023 21:28:17 +0100 Subject: [PATCH] Unpin Django in tests It's not completely clear why this was pinned originally, though at the time Jedi supported Python 2.7 as well as 3.5-3.8, so that may have had something to do with it. Removing this pin now seems to work in CI and unblocks some issues we're seeing around Python 3.12 (specifically that Django<3.1 implicitly relies on distutils, which is no longer available by default, and possibly other issues). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 513850e78..ebb3f6391 100755 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ 'docopt', # coloroma for colored debug output 'colorama', - 'Django<3.1', # For now pin this. + 'Django', 'attrs', ], 'qa': [