File tree Expand file tree Collapse file tree 4 files changed +3
-13
lines changed Expand file tree Collapse file tree 4 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,10 @@ script:
88 - coverage run --source=crudbuilder runtests.py
99env :
1010 matrix :
11- - DJANGO="1.7.4"
1211 - DJANGO="1.8.2"
1312 - DJANGO="1.9.2"
1413matrix :
1514 exclude :
16- - python : " 3.5"
17- env : DJANGO="1.7.4"
1815 # Django 1.9+ no longer supports python 3.2/3.3
1916 - python : " 3.3"
2017 env : DJANGO="1.9.2"
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Features:
4848
4949Prerequisites
5050-------------
51- - Django 1.7 +
51+ - Django 1.8 +
5252- Python 2.7+, 3.2+
5353- Django Tables2
5454
Original file line number Diff line number Diff line change 55 registry
66 )
77
8- VERSION = '0.1.11 '
8+ VERSION = '0.2.0 '
Original file line number Diff line number Diff line change 11import os
22from setuptools import setup
3- import django
43import crudbuilder
54
65# Allow setup.py to be run from any path
76os .chdir (os .path .normpath (os .path .join (os .path .abspath (__file__ ), os .pardir )))
8- djang_version = django .VERSION [1 ]
9-
10- if djang_version == 7 :
11- django_tables2 = 'django_tables2==1.1.2'
12- else :
13- django_tables2 = 'django_tables2'
147
158
169def read (fname ):
@@ -28,7 +21,7 @@ def read(fname):
28212922 long_description = read ('README.rst' ),
3023 install_requires = [
31- django_tables2 ,
24+ ' django_tables2' ,
3225 'six>=1.10.0'
3326 ],
3427 classifiers = [
You can’t perform that action at this time.
0 commit comments