Skip to content

Commit 5c7264e

Browse files
committed
drop support for django 1.7
1 parent d641bbb commit 5c7264e

File tree

4 files changed

+3
-13
lines changed

4 files changed

+3
-13
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,10 @@ script:
88
- coverage run --source=crudbuilder runtests.py
99
env:
1010
matrix:
11-
- DJANGO="1.7.4"
1211
- DJANGO="1.8.2"
1312
- DJANGO="1.9.2"
1413
matrix:
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"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Features:
4848

4949
Prerequisites
5050
-------------
51-
- Django 1.7+
51+
- Django 1.8+
5252
- Python 2.7+, 3.2+
5353
- Django Tables2
5454

crudbuilder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
registry
66
)
77

8-
VERSION = '0.1.11'
8+
VERSION = '0.2.0'

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
import os
22
from setuptools import setup
3-
import django
43
import crudbuilder
54

65
# Allow setup.py to be run from any path
76
os.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

169
def read(fname):
@@ -28,7 +21,7 @@ def read(fname):
2821
author_email='[email protected]',
2922
long_description=read('README.rst'),
3023
install_requires=[
31-
django_tables2,
24+
'django_tables2',
3225
'six>=1.10.0'
3326
],
3427
classifiers=[

0 commit comments

Comments
 (0)