manjitkumar / drf-url-filters

A django app to apply filters on drf querysets using query params with validations using voluptuous.

Home Page:http://www.django-rest-framework.org/api-guide/filtering/#drf-url-filters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't provide absolute specifications for install_requires

pydanny opened this issue · comments

    install_requires=[
        'Django==1.8.11',
        'djangorestframework==3.3.3',
        'voluptuous==0.8.10',
    ],

If I run Django 1.9.5, this overwrites it. Instead, maybe do this:

    install_requires=[
        'Django>=1.8.11',
        'djangorestframework>=3.3.3',
        'voluptuous>=0.8.10',
    ],

Yes, We should do that. I will make a patch for the same. Thank you for pointing it out.

Made a patch for the reported issue. Please close the issue if this merge #7 solves the issue.
#7