mirror of
https://github.com/django-components/django-components.git
synced 2025-08-03 13:58:16 +00:00
Add support for Python 3.9, Django 3.1 and drop unsupported combinations.
This commit is contained in:
parent
9c3446dc24
commit
88fe2fc3b7
3 changed files with 13 additions and 7 deletions
4
setup.py
4
setup.py
|
@ -3,7 +3,7 @@ import os
|
|||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
VERSION = '0.4.3'
|
||||
VERSION = '0.4.4'
|
||||
|
||||
setup(
|
||||
name="django_reusable_components",
|
||||
|
@ -27,6 +27,7 @@ setup(
|
|||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Operating System :: OS Independent",
|
||||
"Framework :: Django",
|
||||
"Framework :: Django :: 1.11",
|
||||
|
@ -34,5 +35,6 @@ setup(
|
|||
"Framework :: Django :: 2.1",
|
||||
"Framework :: Django :: 2.2",
|
||||
"Framework :: Django :: 3.0",
|
||||
"Framework :: Django :: 3.1",
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue