mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-16 21:30:24 +00:00
Update README and setup files to show updated version support for Python and Django.
This commit is contained in:
parent
d493e09491
commit
c2e2640f6e
2 changed files with 10 additions and 8 deletions
|
|
@ -28,8 +28,8 @@ Nomenclature of this specification is based on the Activity Streams Spec: `<http
|
|||
Requirements
|
||||
============
|
||||
|
||||
- Python 3.5, 3.6, 3.7, 3.8
|
||||
- Django 2.2, 3.0
|
||||
- Python 3.7, 3.8, 3.9, 3.10, 3.11
|
||||
- Django 3.2, 4.0, 4.1
|
||||
|
||||
Installation
|
||||
============
|
||||
|
|
|
|||
14
setup.py
14
setup.py
|
|
@ -26,14 +26,14 @@ setup(
|
|||
author_email='yang@yangyubo.com',
|
||||
url='http://github.com/django-notifications/django-notifications',
|
||||
install_requires=[
|
||||
'django>=2.2',
|
||||
'django>=3.2',
|
||||
'django-model-utils>=3.1.0',
|
||||
'jsonfield>=2.1.0',
|
||||
'pytz',
|
||||
'swapper'
|
||||
],
|
||||
test_requires=[
|
||||
'django>=2.2',
|
||||
'django>=3.2',
|
||||
'django-model-utils>=3.1.0',
|
||||
'jsonfield>=2.1.0',
|
||||
'pytz'
|
||||
|
|
@ -53,16 +53,18 @@ setup(
|
|||
'License :: OSI Approved :: BSD License',
|
||||
'Operating System :: OS Independent',
|
||||
'Framework :: Django',
|
||||
'Framework :: Django :: 2.2',
|
||||
'Framework :: Django :: 3.0',
|
||||
'Framework :: Django :: 3.2',
|
||||
'Framework :: Django :: 4.0',
|
||||
'Framework :: Django :: 4.1',
|
||||
# Specify the Python versions you support here. In particular, ensure
|
||||
# that you indicate whether you support Python 2, Python 3 or both.
|
||||
'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',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Topic :: Utilities'
|
||||
],
|
||||
keywords='django notifications github action event stream',
|
||||
|
|
|
|||
Loading…
Reference in a new issue