File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ any parts of the framework not mentioned in the documentation should generally b
1717### Changed  
1818
1919*  Adjusted to only use f-strings for slight performance improvement.
20- *  Set minimum required version of inflection to 0.5.0.
20+ *  Set minimum required version of inflection to 0.5.
21+ *  Set minimum required version of Django Filter to 2.4.
22+ *  Set minimum required version of Polymorphic Models for Django to 3.0.
23+ *  Set minimum required version of PyYAML to 5.4.
2124
2225### Removed  
2326
Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ We **highly** recommend and only officially support the latest patch release of
9696
9797Generally Python and Django series are supported till the official end of life. For Django REST framework the last two series are supported.
9898
99+ For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions should work as well.
100+ 
99101------------ 
100102Installation
101103------------ 
Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ We **highly** recommend and only officially support the latest patch release of
5959
6060Generally Python and Django series are supported till the official end of life. For Django REST framework the last two series are supported.
6161
62+ For optional dependencies such as Django Filter only the latest release is officially supported even though lower versions should work as well.
63+ 
6264## Installation  
6365
6466Install using ` pip ` ...
Original file line number Diff line number Diff line change @@ -101,9 +101,9 @@ def get_package_data(package):
101101        "django>=2.2,<4.1" ,
102102    ],
103103    extras_require = {
104-         "django-polymorphic" : ["django-polymorphic>=2 .0" ],
105-         "django-filter" : ["django-filter>=2.0 " ],
106-         "openapi" : ["pyyaml>=5.3 " , "uritemplate>=3.0.1" ],
104+         "django-polymorphic" : ["django-polymorphic>=3 .0" ],
105+         "django-filter" : ["django-filter>=2.4 " ],
106+         "openapi" : ["pyyaml>=5.4 " , "uritemplate>=3.0.1" ],
107107    },
108108    setup_requires = wheel ,
109109    python_requires = ">=3.6" ,
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments