Marc Fargas
Marc Fargas
The InlineAjax functionality is currently lacking any testing, that makes it very risky to merge any changes that touch that. So this PR will need to be held back until...
Your code snippet, in your CRUD class should read (note, untested code): ```python def get_delete_view(self): delete_view_class = self.get_delete_view_class() class MyDeleteView(delete_view_class): # add self.mixin if you use it. def get_success_url(self): pass...
Note that if 2.0 is the minimum, a note should be put somewhere "this is a python 3 package only!" (tox.ini is currently misleading on that)
> About the `tox.ini`, I've done a little test with _tox_ but in the end never finished the job, so don't trust so much in the ini. > > The...
> Hi, I disaggree, Django 2.2 is not launched yet The latest official Django release is 2.2.2, 2.2 was released on April 1st and is an [LTS](https://www.djangoproject.com/download/) release. Note that...
> What do you think guys in having separate branches for `2.1` and `2.2`. Probably - in the end - lot of work can be used from one branch to...
> Well, dunno how much time do you - guys - have to give some love to the project but I would be really happy if we could release a...
@oscarmlage the issue was closed with the merge, but maybe reopen it while we continue the debate on which versions to support (I don't have a reopen button!)
Hi, Regarding the version minimums, I'd stick with what Django 2.2 already says as @luisza suggested. That is, Django >= 2.2, Python >= 3.5. Following django by default. If you...
> in setup.py we have django>=2 and django-ajax==2.3.7 > but django-ajax v2 is for django=2 Oh oh. Thanks for pointing this out. > May be setup.py need to be fixed?...