-
Goal Problem
That said, I'm inclined to think it's an error in the metadata, because, for example, this commit added compatibility to django 4.0 while python 3.7 was still supported, and it's strange that the lib would be compatible with django 3.1 and 4.0 and not 3.2. I think I can try to find what gives exactly, but if you already know the issue and you can tell from the top of your head what version we can target to have both py3.7 and django3.2 without it beeing a hassle, you can save me a headache :) (I'd be inclined to take 7.10.0 as the last version that officially supported py3.7 and assume it supported dj3.2, even though it looks like nothing was changed in subsequent commits that would likely make later versions fail with py3.7) Thanks in advance ! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Yeah, I see 3.2 was added to the test suite in 038026c so 7.7.1, so that 99% answers the question. If you can just confirm that it was a small metadata issue and not a bigger problem, I won't bother you anymore :) |
Beta Was this translation helpful? Give feedback.
-
Hi @ewjoachim, Thank you for reaching out. I understand how upgrading from a legacy version isn't all too fun. However, I would always encourage anyone to upgrade Django versions frequently. Django has been getting pretty stable and there is tooling now, that automates upgrades, like I hope this help you a little. Cheers! |
Beta Was this translation helpful? Give feedback.
-
Yep, that's exactly the plan, but the first step is to get to a supported LTS, thus my question :) Thanks for your answer. |
Beta Was this translation helpful? Give feedback.
Hi @ewjoachim,
Thank you for reaching out. I understand how upgrading from a legacy version isn't all too fun.
This package is very mature and rather stable in terms of features and code base. Thought, we do upgrade your CI suite and version markers, code largely remains the same. Therefore, you'll probably find mother version compatible with older dependencies.
However, I would always encourage anyone to upgrade Django versions frequently. Django has been getting pretty stable and there is tooling now, that automates upgrades, like
pyupgrade
anddjango-upgrade
.I hope this help you a little.
Cheers!
Joe