wimglenn / djangorestframework-queryfields

Allows clients to control which fields will be sent in the API response
http://djangorestframework-queryfields.readthedocs.io/
MIT License
216 stars 16 forks source link

Add note to docs / github landing to mention supported Django/DRF/Python versions #13

Closed melgart closed 6 years ago

melgart commented 7 years ago

hi there:

sorry for such a trivial question, but does drf queryfields support DRF 3.x yet? I don't see any explicit mention of which versions you do or don't support in your docs. we're in the middle of migrating from DRF 2.x to 3.0.0 and were getting some exceptions, but it's not super clear yet if the problem is with our code (probable) or whether you just don't support 3.x yet. Again, sorry for such a simple question.

wimglenn commented 7 years ago

Yes, DRF3 is supported.

melgart commented 7 years ago

thanks for the reply. i was asking because your travis file only shows the testing environment being set up with DRF 2.4.x (https://github.com/wimglenn/djangorestframework-queryfields/blob/master/.travis.yml).

wimglenn commented 7 years ago

Hmm, I think you're reading that travis file incorrectly. DRF 2.4.x is only installed when testing against Django 1.7 environment (since DRF 3 requires Django 1.8+). All the other configurations use DRF current version, see for example the latest build on Django 1.11 / Python 3.6: it has djangorestframework==3.6.2 listed in the pip freeze.