diff --git a/README.md b/README.md index 6da39a0..2a70274 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ Extra Fields for Django Rest Framework Latest Changes ============== +- **v3.2.1** + - A typo in the `python_requires` argument of `setup.py` that prevents installation for Python 3.6 is fixed. - **v3.2.0** - Support for Python 3.5 is ended. - Python 3.9 and 3.10 are now supported. diff --git a/setup.py b/setup.py index d3acdd3..e8696d9 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='drf-extra-fields', - version='3.2.0', + version='3.2.1', packages=['drf_extra_fields', 'drf_extra_fields.runtests'], include_package_data=True, @@ -27,7 +27,7 @@ author='hipo', author_email='pypi@hipolabs.com', url='https://github.com/Hipo/drf-extra-fields', - python_requires=">3.6", + python_requires=">=3.6", install_requires=requirements, classifiers=[ 'Environment :: Web Environment',