Skip to content

Commit

Permalink
Merge pull request #167 from Hipo/fix-python-requires
Browse files Browse the repository at this point in the history
3.2.1 - Fix python_requires
  • Loading branch information
omerfarukabaci authored Nov 9, 2021
2 parents 4e446eb + 8e220b8 commit 9e2ae58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -27,7 +27,7 @@
author='hipo',
author_email='[email protected]',
url='https://github.com/Hipo/drf-extra-fields',
python_requires=">3.6",
python_requires=">=3.6",
install_requires=requirements,
classifiers=[
'Environment :: Web Environment',
Expand Down

0 comments on commit 9e2ae58

Please sign in to comment.