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).
This commit is contained in:
Peter Law
2023-09-16 21:28:17 +01:00
parent 4bc1b6ef99
commit a80618a2df

View File

@@ -41,7 +41,7 @@ setup(name='jedi',
'docopt', 'docopt',
# coloroma for colored debug output # coloroma for colored debug output
'colorama', 'colorama',
'Django<3.1', # For now pin this. 'Django',
'attrs', 'attrs',
], ],
'qa': [ 'qa': [