From 8e220b8062f0bcdb83d42121eb2cf6c837fed723 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Abac=C4=B1?= Date: Tue, 9 Nov 2021 17:21:39 +0300 Subject: [PATCH] Fix python_requires, Bump version --- README.md | 2 ++ setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) 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',