Skip to content

Commit

Permalink
Merge pull request #14 from mschoenlaub/django-3.2
Browse files Browse the repository at this point in the history
Update supported Django and Python versions
  • Loading branch information
nezhar authored Oct 11, 2021
2 parents b8faf64 + 87fa2b5 commit ebf12eb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

PyPi: [https://pypi.org/project/django-request-cache/](https://pypi.org/project/django-request-cache/).

## Unreleased
### Removed
- Dropped support for Python 3.5 and 3.6
- Dropped support for Django 2.1
### Added
- Added support for Python 3.9 and 3.10
- Added support for Django 3.1 and 3.2

## [1.2](https://pypi.org/project/django-request-cache/1.2/)
### Added
- Django 2.1+ support
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,25 @@
author='Harald Nezbeda',
author_email='[email protected]',
install_requires=[
"django>=2.1",
"django>=2.2,!=3.0.*",
"django_userforeignkey"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
Expand Down

0 comments on commit ebf12eb

Please sign in to comment.