Skip to content

Commit

Permalink
drop support for django 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
asifpy committed Apr 24, 2016
1 parent d641bbb commit 5c7264e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 13 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,10 @@ script:
- coverage run --source=crudbuilder runtests.py
env:
matrix:
- DJANGO="1.7.4"
- DJANGO="1.8.2"
- DJANGO="1.9.2"
matrix:
exclude:
- python: "3.5"
env: DJANGO="1.7.4"
# Django 1.9+ no longer supports python 3.2/3.3
- python: "3.3"
env: DJANGO="1.9.2"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Features:

Prerequisites
-------------
- Django 1.7+
- Django 1.8+
- Python 2.7+, 3.2+
- Django Tables2

Expand Down
2 changes: 1 addition & 1 deletion crudbuilder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
registry
)

VERSION = '0.1.11'
VERSION = '0.2.0'
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
import os
from setuptools import setup
import django
import crudbuilder

# Allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
djang_version = django.VERSION[1]

if djang_version == 7:
django_tables2 = 'django_tables2==1.1.2'
else:
django_tables2 = 'django_tables2'


def read(fname):
Expand All @@ -28,7 +21,7 @@ def read(fname):
author_email='[email protected]',
long_description=read('README.rst'),
install_requires=[
django_tables2,
'django_tables2',
'six>=1.10.0'
],
classifiers=[
Expand Down

0 comments on commit 5c7264e

Please sign in to comment.