mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-16 22:20:24 +00:00
update python 3 (#477)
* update python 3 * modify django-filter to 2.4.0
This commit is contained in:
parent
5608ae91ea
commit
951c7e5bcf
4 changed files with 7 additions and 8 deletions
|
|
@ -45,8 +45,8 @@ Screenshots
|
|||
Requirements
|
||||
============
|
||||
|
||||
* Django 1.11+
|
||||
* Python 2.7+ or Python 3.4+
|
||||
* Django 2.2+
|
||||
* Python 3.5+
|
||||
* django-braces_
|
||||
* django-extra-views_
|
||||
* django-rest-framework_
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from djadmin2.site import djadmin2_site
|
||||
from .models import CaptionedFile, UncaptionedFile
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
|
|
|||
8
setup.py
8
setup.py
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup
|
||||
from setuptools.command.test import test as TestCommand
|
||||
|
|
@ -113,10 +113,10 @@ setup(
|
|||
"License :: OSI Approved :: BSD License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: JavaScript",
|
||||
"Programming Language :: Python :: 2.7",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Topic :: Internet :: WWW/HTTP",
|
||||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
|
|
@ -134,7 +134,7 @@ setup(
|
|||
'django-extra-views>=0.12.0',
|
||||
'django-braces>=1.3.0',
|
||||
'djangorestframework>=3.11.1',
|
||||
'django-filter==2.3.0',
|
||||
'django-filter>=2.4.0',
|
||||
'pytz>=2016.4',
|
||||
],
|
||||
extras_require={
|
||||
|
|
|
|||
Loading…
Reference in a new issue