Skip to content

Commit 36e2d17

Browse files
committed
Drop support for older django versions!
1 parent 6f45be1 commit 36e2d17

File tree

2 files changed

+9
-42
lines changed

2 files changed

+9
-42
lines changed

.travis.yml

+6-38
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,16 @@ language: python
55
python:
66
- "3.5"
77
- "3.4"
8-
- "3.3"
98
- "2.7"
10-
- "2.6"
11-
129
env:
13-
- DJANGO="Django==1.5"
14-
- DJANGO="Django==1.6"
15-
- DJANGO="Django==1.7"
16-
- DJANGO="Django==1.8"
17-
- DJANGO="Django==1.9"
18-
19-
matrix:
20-
exclude:
21-
# Django 1.5 support Python 2.6.5 Python 2.7, Python 3.2 and 3.3.
22-
# Django 1.6 requires Python (2.6.X, 2.7.X, 3.2.X, and 3.3.X)
23-
# Django 1.7 requires Python 2.7, 3.2, 3.3, or 3.4
24-
# Django 1.8 requiert Python 2.7, 3.2, 3.3, 3.4 or 3.5.
25-
# Django 1.9 requiert Python 2.7, 3.4 or 3.5.
26-
# Python 2.6 support has been dropped for Django 1.7 onwards
27-
- python: "3.4"
28-
env: DJANGO="Django==1.5"
29-
- python: "3.5"
30-
env: DJANGO="Django==1.5"
31-
- python: "3.4"
32-
env: DJANGO="Django==1.6"
33-
- python: "3.5"
34-
env: DJANGO="Django==1.6"
35-
- python: "2.6"
36-
env: DJANGO="Django==1.7"
37-
- python: "3.5"
38-
env: DJANGO="Django==1.7"
39-
- python: "2.6"
40-
env: DJANGO="Django==1.8"
41-
- python: "2.6"
42-
env: DJANGO="Django==1.9"
43-
- python: "3.3"
44-
env: DJANGO="Django==1.9"
10+
- DJANGO="Django==1.8.4"
11+
- DJANGO="Django==1.9.9"
12+
- DJANGO="Django==1.10"
4513

46-
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
14+
# command to install dependencies, e.g. pip install -r requirements.txt
4715
install:
48-
- pip install $DJANGO --use-mirrors
49-
- pip install -r requirements-test.txt --use-mirrors
16+
- pip install $DJANGO
17+
- pip install -r requirements-test.txt
5018

5119
# command to run tests using coverage, e.g. python setup.py test
5220
script: coverage run --source admin_reorder runtests.py

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,9 @@
4747
'Intended Audience :: Developers',
4848
'License :: OSI Approved :: BSD License',
4949
'Natural Language :: English',
50-
'Programming Language :: Python :: 2',
51-
'Programming Language :: Python :: 2.6',
5250
'Programming Language :: Python :: 2.7',
53-
'Programming Language :: Python :: 3',
54-
'Programming Language :: Python :: 3.3',
51+
'Programming Language :: Python :: 3.4',
52+
'Programming Language :: Python :: 3.5',
53+
5554
],
5655
)

0 commit comments

Comments
 (0)